#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
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is a spanning Tree?
what type of questions arrive in interview over c programming?
How can I handle floating-point exceptions gracefully?
What is the difference between break and continue?
What is the difference between a function and a method in c?
What are the __date__ and __time__ preprocessor commands?
What is break in c?
differentiate built-in functions and user – defined functions.
What is the function of multilevel pointer in c?
How can I do peek and poke in c?
What is the difference between c and python?
Is c language still used?
What is the difference between local variable and global variable in c?
What is the use of a semicolon (;) at the end of every program statement?