#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
Are there namespaces in c?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
how to make a scientific calculater ?
What are qualifiers?
What is the difference between arrays and pointers?
What is return type in c?
how logic is used
I heard that you have to include stdio.h before calling printf. Why?
What is the difference between fread and fwrite function?
What are the __date__ and __time__ preprocessor commands?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is c basic?
What is the difference between memcpy and memmove?
Explain what happens if you free a pointer twice?
What does it mean when the linker says that _end is undefined?