Question: What gets assigned to variable k after following statements are executed in a C Program? int k, num = 30 ; k = ( num
What gets assigned to variable k after following statements are executed in a C Program?
int k, num = 30 ;
k = ( num > 5 ? ( num <= 10 ? 100 : 200 ) : 500 ) ;
i got 200 but can someone explain me how it prints 200? thank you.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
