P
Q. What will be the output of following c program?
Code:
int main() {
unsigned int i=65000;
while ( i++ != 0 );
printf("%d",i);
return 0;
}
unsigned int i=65000;
while ( i++ != 0 );
printf("%d",i);
return 0;
}
- Correct Answer - Option(A)
- Views: 138
- Filed under category C Programming
Discusssion
Login to discuss.