A
Q. What will be the output of this program?
Code:
#include <stdio.h>
int main() {
int a = 10;
printf("%d", ++a);
return 0;
}
int main() {
int a = 10;
printf("%d", ++a);
return 0;
}
- Correct Answer - Option(B)
- Views: 21
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.