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 / udai
512
| Is This Answer Correct ? | 8 Yes | 6 No |
Post New Answer View All Answers
Is struct oop?
How do you define CONSTANT in C?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
What language is windows 1.0 written?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What are the uses of a pointer?
Compare and contrast compilers from interpreters.
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
What are the primitive data types in c?
What are the disadvantages of external storage class?
What is wrong with this program statement?
Multiply an Integer Number by 2 Without Using Multiplication Operator
How can I copy just a portion of a string?
Is linux written in c?
Explain what is the benefit of using an enum rather than a #define constant?