A
Q. What is the output of this code?
Code:
#include <stdio.h>
int main() {
int x = 3;
x += 2 * 3;
printf("%d", x);
return 0;
}
int main() {
int x = 3;
x += 2 * 3;
printf("%d", x);
return 0;
}
- Correct Answer - Option(B)
- Views: 27
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.