1.

What is the output of this program? #include #include int main() { int i, numbers[1]; numbers[0] = 15; free(numbers); printf("Stored integers are "); printf("numbers[%d] = %d ", 0, numbers[0]); return 0; }

A. 15
B. Compilation error
C. garbage value
Answer» B. Compilation error


Discussion

No Comment Found