Top

Discussion

What will be the output of the program ?

#include

int main()
{
    char p[] = "%d\n";
    p[1] = 'c';
    printf(p, 65);
    return 0;
}

 

  • A.A
  • B.a
  • C.c
  • D.65

Answer: A

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment