First time here? Checkout the FAQ!
x
menu search
brightness_auto
more_vert

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");
 }
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

1 Answer

more_vert
 
verified
Best answer

False 


will be the ouput

image

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...