M
Q. What will be the output of the following code snippet?
#include <stdio.h> #define VAL 5 int getInput() { return VAL; } void solve() { const int x = getInput(); printf("%d", x); } int main() { solve(); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. The binary equivalent of 5.375 is
Q. What will be the output of the following code snippet?
Q. while declaring parameters for main, the second parameter argv should be declared as
Q. Which statement is true about the given code ?
Q. Which of the following is not a valid variable name declaration?
Q. What is the limit for number of functions in a C Program.?
Q. Which one is not a keyword in C
Discusssion
Login to discuss.