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 / srikanth karnati
please explain this program.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What is a union?
What are the types of macro formats?
Why enum is used in c?
The difference between printf and fprintf is ?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Are c and c++ the same?
What's the best way of making my program efficient?
Is null equal to 0 in sql?
What is #line used for?
What is use of integral promotions in c?
Differentiate between declaring a variable and defining a variable?
What is pointer and structure in c?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
What does *p++ do? What does it point to?