#define MAX(x,y) (x) > (y) ? (x) : (y)
main()
{
int i = 10, j = 5, k = 0;
k = MAX(i++, ++j);
printf("%d %d %d", i,j,k);
}
what will the values of i , j and k?
}
Answer Posted / pawan
10 5 0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How is a null pointer different from a dangling pointer?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Tell me is null always defined as 0(zero)?
Can i use “int” data type to store the value 32768? Why?
What is the sizeof () a pointer?
How would you obtain the current time and difference between two times?
Is a house a mass structure?
What is function definition in c?
List some of the dynamic data structures in C?
What is difference between structure and union in c?
What are the preprocessor categories?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Explain two-dimensional array.
What is the role of this pointer?
How can I write functions that take a variable number of arguments?