#define MAX(x,y) (x) >(y)?(x):(y)
main()
{
inti=10,j=5,k=0;
k= MAX(i++,++j);
printf("%d..%d..%d",i,j,k);
}
No Answer is Posted For this Question
Be the First to Post Answer
What is #line?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
Explain what are reserved words?
Write a program that his output * *** *****
what is a constant pointer in C
How to implement variable argument functions ?
What is the role of this pointer?
What is extern storage class in c?
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
write a “Hello World” program in “c” without using a semicolon?