

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the correct output for the program given below ?#include <stdio.h>int main (){ int k, number = 50; k = (number >10 ? (number <= 70 ? 220 : 710) : 650); printf ("%d n", k); return 0;} |
A. | 220 |
B. | 50 |
C. | 710 |
D. | 650 |
Answer» B. 50 | |