#define CUBE(x) (x*x*x)
main()
{ int a,b=3;
a=cube(b++);
printf("%d %d",a,b);
}
What should be the value of a and b? My calc a=4 but syst
a=6 how pls tell me if you know it?
Answer Posted / p. smith
27 4 is the output.
the call to the macro sets a = b*b*b with b = 3, 3 cubed is 27
then b is incremented to 4 after the macro call
| Is This Answer Correct ? | 22 Yes | 21 No |
Post New Answer View All Answers
i wanted to know about questions about c,c++ , which is required for placements.... im a fresher
What are the various types of stl containers?
How is stl different from c++ standard library?
What is a list in c++ stl?
What is stl language?
Who created stl?
Is stl part of c++ standard?
write a program that will accept a number and print.its equivalent in words the maximum input number is 9999
What is stl in c++ with example?
What do stl stand for?
help me i need a c++ program which takes sequesnce of characters and outputed sequence of their token taypes, work same compiler in lexical analysis phase
Why should a c++ programmer be interested in stl?
What are stl algorithms?
What is the use of stl?
Can we use stl in coding interviews?