#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 / sshireesha
12 6 11
| Is This Answer Correct ? | 30 Yes | 9 No |
Post New Answer View All Answers
Explain how can a program be made to print the name of a source file where an error occurs?
Is fortran still used in 2018?
What are the features of the c language?
Differentiate between Macro and ordinary definition.
Can we declare variables anywhere in c?
Why c is called a middle level language?
Explain the difference between malloc() and calloc() in c?
What is a #include preprocessor?
What is bash c?
Which is better pointer or array?
What is the function of multilevel pointer in c?
What do you mean by scope of a variable in c?
What is maximum size of array in c?
What is the best way to store flag values in a program?
What is hashing in c?