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