Computer Science, asked by pothurianjani, 2 months ago

main( )
{
int k,num=30;
k= (num>52 (num <= 10 ? 100:200):500)
Pf("/n %d",num);
}​

Answers

Answered by lakshgarg369
0

equation should be

k= (num>52 ? (num<=10 ? 100: 200): 500)

? after num > 52 is missing

Similar questions