Q.

#include <stdio.h>
#include <string.h>
int main(){
int i=0;
for(;i<=2;)
printf(" %d",++i); return 0;
}

A. 0 1 2 3
B. 0 1 2
C. 1 2 3
D. compiler error
Answer» C. 1 2 3
2k
1
Do you find this helpful?
13

Discussion

No comments yet

Related MCQs