#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 C++
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
How will you delete a node in DLL?
Why do we use & in c?
What are control structures? What are the different types?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Difference between MAC vs. IP Addressing
Why c is called top down?
What are qualifiers?
What is printf () in c?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
Is there a built-in function in C that can be used for sorting data?