12345678910



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

#include<stdio.h>

int main()
{
char str[] = "peace";
char *s = str;
printf("%s ", s++ +3);
return 0;
}

1. peace
2. eace
3. ace
4. ce