#include <stdio.h> int main() { int k = 10, L = 11; int *num[] = {&k, &L}; printf("%d", (*num)[0]); return 0; }
10
Previous Question Next Question
Your comments will be displayed only after manual approval.