Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C Ternary Operator
What is the output of the below given code?
int y = 9;
y += y+3;
printf("%d",y);1
12
2
21
3
Error
4
0
What is the output of the below given code?
int y = 9;
y += y+3;
printf("%d",y);