R
Q. What is the output of this program?
#include <stdio.h> #include <stdlib.h> #define square(x) x*x int main() { int i; i = 27/square(3); printf("%d",i); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Q. What does the following declaration mean? int (*ptr) [10];
Q. Which one is not a primary constant in C
Q. Which of the following is the correct output for the program given below?
Q. Number of Keywords present in C Language are?
Q. What is the output of C program?
Q. What is the difference between float and double in C?
Q. What value does testarray[2][1][0] in the sample code contain?
Q. Given that x = 7.5, j = -1.0, n = 1.0, m = 2.0 the value of - - x + j == x>n> = m is:
Discusssion
Login to discuss.