Q174
What will be the output of the following C code? (Initial values: x= 7, y = 8) #include void main() float x; int y; printf("enter two numbers "); scanf("%f %f", &x, &y); printf("%f, %d", x, y);
A.
7.000000, 7
B.
Run time error
C.
7.000000, junk
AnswerD.
Varies
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board