What will be the output of the following C code?
#include <stdio.h>
int main()
{
int i = 0;
while (i = 0)
printf("True\n");
printf("False\n");
}
A
False
B
True (1 time) False
thing
с
True (infinite time)
D
Compiler dependent
Answers
Answered by
0
Explanation:
c ............................
Answered by
0
Explanation:
Option C is the answer
True(infinite time)
Similar questions