#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 / mukul

ans : 11 6 0

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are type modifiers in c?

601


What do you mean by c?

570


How is = symbol different from == symbol in c programming?

594


What is call by reference in functions?

541


What is binary tree in c?

611






Why isnt any of this standardized in c?

624


Write a code to generate divisors of an integer?

623


What is static function in c?

615


Tell me what is null pointer in c?

595


What are keywords in c with examples?

588


Can we access the array using a pointer in c language?

549


typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none

695


How many types of errors are there in c language? Explain

560


I have seen function declarations that look like this

585


Is null a keyword in c?

724