27

#include < stdio.h >
int main()
{
int a=2;
printf(&a["shark srini"]);
return 0;
}


Output:


ark    srini


Logic:


To understand the logic of this program, please read the following post:

NUMBER[ARRAY]

string different operation

Related Posts