Q. Output is
Code:
#include <stdio.h>
void main() {
int x = 20;
printf(“%x”, x);
}
β
Correct Answer: (A)
14
#include <stdio.h>
void main() {
int x = 20;
printf(“%x”, x);
}
You must be Logged in to update hint/solution