Which of the following are the correct way to initialise the variables i and j to a value 10 each?
Answers
Answered by
0
There are 2 possible ways.
1. Use this.
I = 10
j = 10
2. Or this
i,j = 10,10
Similar questions