main( )
{
int k,num=30;
k= (num>52 (num <= 10 ? 100:200):500)
Pf("/n %d",num);
}
Answers
Answered by
0
equation should be
k= (num>52 ? (num<=10 ? 100: 200): 500)
? after num > 52 is missing
Similar questions