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
How can I implement a delay, or time a users response, with sub-second resolution?
What is the use of the function in c?
c program for searching a student details among 10 student details
What are the different types of C instructions?
What is a far pointer in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Is main a keyword in c?
Why & is used in scanf in c?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is meant by int main ()?
What are the different types of control structures in programming?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is the use of ?
What is the use of bit field?
Wt are the Buses in C Language