#include <stdio.h> void main() { int look_up[100] = {10, 11, 12, 13, 14, 15, 16, 17, 18, 19}; printf("%d", look_up[6]); }
16
Previous Question Next Question
Your comments will be displayed only after manual approval.