Latest C Aptitude Question SOLUTION: output? Q. main() {i nt i; printf("%d",scanf("%d",&i)); // value 10 is given as input here } A. 1 Explanation: Scanf returns number of items successfully read and not 1/0. Here