What is the output of the following c-program ?
#include
char *str[ ] = {"FirstSring", "Is", "Already", "Written"};
char **strp[ ] = {str+3, str+2, str+1, str};
char ***strpp = strp;
int main()
{
printf("%s ", **++strpp);
printf("%s ", *--*++strpp+3);
return 0;
}
1
Compile time error
2
Already tten
3
Already stSring
4
Written eady