Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C Ternary Operator
निम्नलिखित प्रोग्राम का आउटपुट क्या होगा?
#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