#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
Describe the My Computer and My Documents folders; identify the elements that are present in every Window.
Describe how to safeguard a system through acquisition of an antivirus Program and systematic backup.
What does stl stand for in basketball?
What is stl stand for?
how to use C++?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
To modify an, existing worksheet. What steps are involved for: 1. Inserting and deleting rows and columns. 2. Printing cell formulas 3Jld displayed values 3. Using the page setup command
i wanted to know about questions about c,c++ , which is required for placements.... im a fresher
Who created stl?
What do stl stand for?
How does an stl file work?
What two types of containers does the stl provide?
What is a list in c++ stl?
What is a standard template library (stl)?
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