1.

How many times C.com is printed?int main(){int a = 0;while(a++)printf("C.com");return 0;}

A. 1 time
B. 0 time
C. Infinite times(Untill Stack is overflow)
D. 2 times
Answer» C. Infinite times(Untill Stack is overflow)


Discussion

No Comment Found