Discussion :: Datatypes
-
Which of the following are the correct way to initialise the variables i and j to a value 10 each?
int i = 10; int j = 10;
int i, j; i = 10 : j = 10;
int i = 10, j = 10;
int i, j = 10;
int i = j = 10;
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment