1.

What is the output of the following program ?(Assume that the appropriate preprocessor directives are included and there is no syntax error)main ( )            {    char S[ ] = "ABCDEFGH";                 printf ("%C",* (& S[3]));                 printf ("%s", S + 4);                 printf ("%u", S);            /* Base address of S is 1000 */            }

A. ABCDEFGH1000
B. CDEFGH1000
C. DDEFGHH1000
D. DEFGH1000
Answer» E.


Discussion

No Comment Found