C - Input and Output
What will be the output of this C program?
Input: 2 3 4
int x, y, z;
scanf("%d %d %d", &x, &y, &z);
printf("%d", x + y + z);
Input: 2 3 4
int x, y, z;
scanf("%d %d %d", &x, &y, &z);
printf("%d", x + y + z);
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions