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