#include
void fun (char s[],char t[])
{int i,j;
for(i=1;i t[j++]=s[i]; } int main() {char s[100],t[100]; int i,j; printf("enter s:"); gets(s); printf("the t is:"); fun (s,t); printf("%s",t); return 0; }

#include
void fun (char s[],char t[])
{int i,j;
for(i=1;i t[j++]=s[i]; } int main() {char s[100],t[100]; int i,j; printf("enter s:"); gets(s); printf("the t is:"); fun (s,t); printf("%s",t); return 0; }