1.

How many times loop will get executed ? #include<stdio.h> int main() { int i = 0; while(i <= 255) { printf("%d", i); i++; } return 0; }

A. 255 Times
B. 256 Times
C. Infinite Times
D. 1 Time
Answer» C. Infinite Times


Discussion

No Comment Found