28 pointer, string #include < stdio.h >#include < string.h >int main( ){char a[ ]="shark srini";char *b;int i;b=&a[0];for(i=0;i<4;i++) {printf("%c",*a);b++;}}Output:sssssLogic:click here to get the logic. Share this Share on FacebookTweet on TwitterPlus on Google+ Related Posts514565pointer operation with &,*6271