Examveda
Examveda

Determine Output:
void main()
{
      char p[]="%dn";
      p[1] = 'c';
      printf(p, 65);
}

A. 65

B. c

C. A

D. Error

Answer: Option C

Solution(By Examveda Team)

Due to the assignment p[1] = 'c' the string becomes, "%c\n". Since this string becomes the format string for printf and ASCII value of 65 is 'A', the same gets printed.


This Question Belongs to C Program >> C Miscellaneous

Join The Discussion

Comments ( 1 )

  1. Vishal Garg
    Vishal Garg :
    8 years ago

    Correct Answer: An

Related Questions on C Miscellaneous