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 / bala prasad
it prints
512
| Is This Answer Correct ? | 17 Yes | 10 No |
Post New Answer View All Answers
What are near, far and huge pointers?
What is break in c?
How many bytes are occupied by near, far and huge pointers (dos)?
hi, which software companys will take,if d candidate's % is jst 55%?
What is the difference between the local variable and global variable in c?
What is the difference between printf and scanf in c?
What is the difference between call by value and call by reference in c?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Which is an example of a structural homology?
What is size of union in c?
What is #include stdlib h?
program for reversing a selected line word by word when multiple lines are given without using strrev
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
How can I write a function analogous to scanf?