what will be the output of the following program:
#include <stdio.h> int main() { int i = 0, j = 1; int *a[] = {&i, &j}; printf("%d", (*a)[0]); return 0; }
Correct Answer:
0
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Correct Answer:
0
need an explanation for this answer? contact us directly to get an explanation for this answer