#include <stdio.h> #include <string.h> int main(){ int i=0; for(;i<=2;) printf(" %d",++i); return 0; }
1. 0 1 2 3
2.0 1 2
3.1 2 3
4.compiler error
Answer:3
Posted Date:-2022-07-06 06:42:04