Question: Given a snippet of C code: #define MIN(a, b) a > b?b:a int a = 9, b= 11; printf(%d, MIN(a++, b)); What value will be
Given a snippet of C code: #define MIN(a, b) a > b?b:a int a = 9, b= 11; printf("%d", MIN(a++, b)); What value will be printed? 0 10 O 12
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
