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
Explain what are linked list?
What would be an example of a structure analogous to structure c?
Explain what math functions are available for integers? For floating point?
Are the expressions * ptr ++ and ++ * ptr same?
main() { printf("hello"); fork(); }
What is the difference between far and near ?
Compare interpreters and compilers.
What is the code in while loop that returns the output of given code?
What is auto keyword in c?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is a node in c?
How can you call a function, given its name as a string?
Explain Function Pointer?
Explain how can I manipulate strings of multibyte characters?
When should I declare a function?