#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 / vignesh1988i
surely 'a' cannot be 4 or 6.... it will be the value of b... since we are multiplying b++ thrice...... so surely 'a' cannot be 4 or 6.....
according to me b=6 , and a=60......
thank u
| Is This Answer Correct ? | 4 Yes | 9 No |
Post New Answer View All Answers
write a program that will accept a number and print.its equivalent in words the maximum input number is 9999
What are stl algorithms?
What are the symptoms of stl?
please visit this site you'll find my question this is my homework please answer it if you can http://easyscience.org/ib/lofiversion/index.php/t36168.html
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
Is stl open source?
What is the stl, standard template library?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?
Describe the My Computer and My Documents folders; identify the elements that are present in every Window.
What is a standard template library (stl)? What are the various types of stl containers?
Can we use stl in coding interviews?
a program using one dimensional array that searches a number if it is found on the list of given input numbers given by the user and locate its exact location in the list.
What is stl in oop?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.