What is the output of this C code?
int main()
{
int i = 0, j = 0;
while (i < 5, j < 10)
i++;
j++;
}
printf("%d, %d\n", i, j);
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
none
Be The First To Comment