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 \n", x);scanf("%f %f", &x, &y);printf("%f, %d", x, y);}

🎲 Try a Random Question  |  Total Questions in Quiz: 113  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
C Programming Practice Test: Miscellaneous Topics — practice the complete quiz, review flashcards, or try a random question.


What will be the output of the following C code? (Initial values: x= 7, y = 8)<br>#include <stdio.h><br>void main()<br>{<br>float x;<br>int y;<br>printf("enter two numbers \n", x);<br>scanf("%f %f", &x, &y);<br>printf("%f, %d", x, y);<br>}