Search for tag: "braces"
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
|
|
Simplest C++ program - parts of the functionEvery function has four parts: return type name list of arguments body int main() { return 0;}
From Lane Schwartz
12 plays
0
|
|