what will be the output of this program?
#include<stdio.h>
#define cube(x) x*x*x
void main()
{
int i,j=5;
i=cube(j+3);
printf("i=%d",i);
}
Answer Posted / sinchanforyou
It prints:
i=38
| Is This Answer Correct ? | 25 Yes | 10 No |
Post New Answer View All Answers
What is a function in c?
Where we use clrscr in c?
Can math operations be performed on a void pointer?
Explain modulus operator. What are the restrictions of a modulus operator?
Can you please explain the difference between syntax vs logical error?
How can I delete a file?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is sizeof return in c?
Mention four important string handling functions in c languages .
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
please send me the code for multiplying sparse matrix using c
What does static variable mean in c?
What is wrong in this statement? scanf(ā%dā,whatnumber);
Are comments included during the compilation stage and placed in the EXE file as well?
What is FIFO?