What is the output of the following C code?
#include<stdio.h> int main() { int i=0; for(;i++;printf(%d,i)); printf(%d,i); return 0; }
Reveal answer
Fill a bubble to check yourself
What is the output of the following C code?
#include<stdio.h> int main() { int i=0; for(;i++;printf(%d,i)); printf(%d,i); return 0; }