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