Home / Programming MCQs / C Programming MCQs / Question
G
Q. What will be the output of the following C code? (Initial values: x= 7, y = 8)
#include <stdio.h> void main() { float x; int y; printf("enter two numbers \n", x); scanf("%f %f", &x, &y); printf("%f, %d", x, y); }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
A C variable cannot start with
What will be the output of the following C code?
Comment on the following pointer declaration?
The C-preprocessors are specified with _________ symbol.
What is the output of C Program?
How to find the length of an array in C?
Pointer arithmetic is not possible on ___.
Which of the following function is used for sets the position to a desired point in the file
Discusssion
Login to discuss.