Ques 1 Loop
What is the output of the following code ?
int main() { int k; for(k=0;k<=4;) { printf("%d",k++); } return 0; }
Ques 2 Loop
What is the output of the following code ?
int main() { double k=4.444; do{ printf("SC "); }while(!k); return 0; }
Ques 3 Loop
What is the output of the following code?
#include<sdtio.h> int main() { int a=6,b=2; while(!printf("SmallCode")) { return 0; } }