+ 1
What are statements in c++?
1 Réponse
0
It's everything.
So
int n = 2; //is a declaration statement
cout, cin or mathematical statements are expression statements.
Then there's the return statements such as return 0;
And if statements, while statements and so on.