M
Q. What will be the output of the following code snippet?
#include <stdio.h> void solve() { printf("%d ", 9 / 2); printf("%f", 9.0 / 2); } 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. Which of the following format specifiers is used to represent the name of the time zone?
Q. Which of the following storage classes have global visibility in C?
Q. We want to round off x, a float, to an int value, The correct way to do is
Q. What is the output of this program?
Q. Which is correct with respect to size of the datatypes?
Q. What is the output of C program with String arrays?
Q. What is right way to Initialization array?
Q. Which of the below syntax is the correct way of declaring a function?
Discusssion
Login to discuss.