#include <stdio.h>int main (){ int k, number = 50; k = (number >10 ? (number <= 70 ? 220 : 710) : 650); printf ("%d\n", k); return 0;}
Both conditions are true.so output will be 220
Previous Question Next Question
Your comments will be displayed only after manual approval.