what will be the output?? int main(int c) c=1; while(1); c++; printf("%d",++c); return 0; }
Nothing
3
1
2