C Programming :: Control Instructions
-
How many times "FresherGATE" is get printed?
#include int main() { int x; for(x=-1; x10; x++) { if(x 5) continue; else break; printf("FresherGATE"); } return 0; } -
How many times the while loop will get executed if a short int is 2 byte wide?
#include int main() { int j=1; while(j 255) { printf("%c %d\n", j, j); j++; } return 0; } -
In mathematics and computer programming, which is the correct order of mathematical operators ?
-
Which of the following cannot be checked in a switch-case statement?

Whatsapp
Facebook