- 4
In every C++ program: Select all that apply
which can apply guys?Variables names should be either x or y There must be a function named main There must be at least two declared variables Each variable must have its data type
6 Answers
+ 4
There must be a function named main.
Each variable must have its data type.
+ 2
In every C++ program:
*There must be a function named main
*Each variable must have its data type
+ 2
Each variable must have its data type
There must be a function named main
+ 2
Each variable must have its data type
There must be a function named main
0
In every C++ program:
Answer:
There must be a function named main
Each variable must have its data type
Unlock Now
Good luck
- 3
int x = 81;
int y = 3;
<< x
+
y << endl;