Search for tag: "contents"
Vector, Part 2) Iterate over contents of vector in C++#include <iostream>#include <vector> using std::cout; using std::vector; int main() { auto my_data = vector<int>{17, 25, -300, 14}; for (auto item : my_data) { …
From Lane Schwartz
7 plays
0
|
|
Vector, Part 1) Create non-empty vector in C++#include <vector> using std::vector; int main() { auto my_data = vector<int>{17, 25, -300, 14}; return 0; }
From Lane Schwartz
9 plays
0
|
|
Simplest C++ program - compile the programCompile the simplest possible C++ program using the g++ compiler. g++ -std=c++17 -o sample sample.c++
From Lane Schwartz
9 plays
0
|