Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C Ternary Operator
What will be the output of the following program?
#include
int main()
{
int a = 4, b = 3;
printf("%d",a+++b);
printf("%d",a+++b);
return 0;
}
1
78
2
77
3
88
4
87