1.

What will be the output of the following C code?#include <stdio.h> int main() { int num[6] = {6, 7, 8, 9, 10}; printf("%d n", *num); }

A. 10
B. 9
C. 8
D. 7
E. 6
Answer» F.


Discussion

No Comment Found