12345678910



Question 1: What will be the output of the program ?

#include<stdio.h>

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

1. A
2. B
3. C
4. 65