Search for tag: "syntax"
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
10 plays
0
|
|
Hello world in C++This video shows how to create, compile, and run a simple program in C++ that prints the message "Hello, world"
From Lane Schwartz
19 plays
0
|
|