#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


Please Help Members By Posting Answers For Below Questions

write a program to convert a decimal number in to its equivalent binary number?

2069


Can we use stl in coding interviews?

1266


Who created stl?

641


If P is the population on the first day of the year, B is the birth rate, and D is the death rate, the estimated population at the end of the year is given by the formula: The population growth rate is given by the formula: B – D Write a program that prompts the user to enter the starting population, birth and death rates, and n, the number of years. The program should then calculate and print the estimated population after n years. Your program must have at least the following functions: 1. growthRate: This function takes its parameters the birth and death rates, and it returns the population growth rate. 2. estimatedPopulation: This function takes its parameters the current population, population growth rate, and n, the number of years. It returns the estimated population after n years Your program should not accept a negative birth rate, negative death rate, or a population less than 2. please answer my question ....

1769


Define stl.

764






totoo po ba ang manga aliens!

2326


What is stl in oop?

667


Describe how to safeguard a system through acquisition of an antivirus Program and systematic backup.

1637


i wanted to know about questions about c,c++ , which is required for placements.... im a fresher

1692


How is stl different from c++ standard library?

726


What is stl stack?

653


How connect plc and pc through software

1908


How stl is different from the c++ standard library?

633


What two types of containers does the stl provide?

563


What are stl algorithms?

612