You are viewing a single comment's thread. Return to all comments →
char ch; //use this code char s[100]; char s1[122]; scanf("%c%*c",&ch); scanf("%s%*c",&s); scanf("%[^\n]",&s1); printf("%c\n",ch); printf("%s\n",s); printf("%s",s1); return 0;
Seems like cookies are disabled on this browser, please enable them to open this website
Playing With Characters
You are viewing a single comment's thread. Return to all comments →