![]() |
C++ World |
C++ Resources, Tips, Documentation, Examples, HOWTO's, FAQ's, Tools Libraries, Frameworks, IDE's © 2005,2009 C++ World - All rights reserved - webdesign.arttina |
|---|
| C++, Sockets, SysProg, Libraries, Examples, Tools, Compilers, IDE, STL, XML |
|
| FAQ | Sockets | Socket Library | Software Engineering | Sysprog | Examples | Books |
|---|
| Home |
|---|
| C++ |
| The C Language |
| STL |
| BOOST |
| GNU |
| GNU C Compiler |
| GNU Debugger |
| GNU Profiler |
| HP C++ Compiler |
| DDD |
| Eclipse |
| Curses |
| XML |
| X11 |
| KDevelop |
| MS Visual Studio |
| Tutorials |
// *************************************************
// File: vector1.cpp
// Author: franzbrandel@cplusplusworld.com
// (c) 2009 C++ World
// http://www.cplusplusworld.com/
// simple example
// *************************************************
#include <iostream>
#include <vector>
int main(int argc, char *argv[] ) {
std::vector<int> vec; // vector contains integer elements
// append 10 integers
for (int i=1; i<=10; ++i) {
vec.push_back(i*21);
}
// print one element on a line
for (int i=0; i<vec.size(); ++i) {
std::cout << vec[i] << '\n';
}
return 0;
}
| Franz Brandel | Contact | Legal Statement | Sitemap | C++ World |