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
Explain what is a 'locale'?
Which programming language is best for getting job 2020?
What does return 1 means in c?
Explain the difference between strcpy() and memcpy() function?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
Explain the ternary tree?
how can f be used for both float and double arguments in printf? Are not they different types?
What is function prototype?
What is an arrays?
What are the restrictions of a modulus operator?
How can I delete a file?
What is the equivalent code of the following statement in WHILE LOOP format?
What is c++ used for today?
How can I manipulate individual bits?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25