#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
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is the g value paradox?
What are the advantages and disadvantages of c language?
Can we initialize extern variable in c?
Explain what is dynamic data structure?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What are conditional operators in C?
Describe the difference between = and == symbols in c programming?
Can we change the value of static variable in c?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
How can a number be converted to a string?
Why is c fast?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
What is #pragma statements?