M
Q. What will be the output of the following code snippet?
#include <stdio.h> #define CUBE(x) x * x * x void solve() { int ans = 216 / CUBE(3); printf("%d", ans); } 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. How would you round off a value from 1.66 to 2.0?
Q. What is the output of the following C program?
Q. What will be output if you will compile and execute the following c code?
Q. Which gcc option is used to generate assembly code from C code on Linux?
Q. How to initialize a pointer to an array of 10 char?
Discusssion
Login to discuss.