What is the output of the following C code?
#include stdio.h
int main() {
int h[3]={ [1]=20,[0]=8,[2]=2};
printf("%d",h[0]);
return 0;
}


Posted on by