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
Which is best linux os?
Explain what is the benefit of using const for declaring constants?
What is the use of static variable in c?
Why c is called object oriented language?
What does != Mean in c?
Is there a way to jump out of a function or functions?
What is the difference between array_name and &array_name?
What is volatile variable how do you declare it?
How does sizeof know array size?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Write the syntax and purpose of a switch statement in C.
Write a program to print ASCII code for a given digit.
what are bit fields in c?
Which function in C can be used to append a string to another string?
Differentiate between static and dynamic modeling.