#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 / guest
12 6 11
| Is This Answer Correct ? | 70 Yes | 32 No |
Post New Answer View All Answers
write a c program for swapping two strings using pointer
What is the method to save data in stack data structure type?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Is c# a good language?
Explain what is the difference between text files and binary files?
write a program to copy the string using switch case?
Do you know the use of fflush() function?
Why can arithmetic operations not be performed on void pointers?
How do I get a null pointer in my programs?
What does 1f stand for?
What are c header files?
Can a pointer be static?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
write a program in c language to print your bio-data on the screen by using functions.
Explain main function in c?