What is the output of the following C code?
#include<stdio.h> int main() { short int i=0; for(i;++i;i>=99) 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() { short int i=0; for(i;++i;i>=99) printf(%d,i); return 0; }