Discussion :: C-MCQs
-
What is the output of this C code?
(7 and 8 are entered)
void main()
{
float x;
int y;
printf("enter two numbers \n", x);
scanf("%f %f", &x, &y);
printf("%f, %d", x, y);
}
Answer : Option C
Explanation :
None.
Be The First To Comment