You are viewing a single comment's thread. Return to all comments →
int main() { char ch; char str[100]; char sentence[100]; scanf("%c",&ch); scanf("%s",str); scanf("\n"); scanf("%[^\n]%*c",sentence);
printf("%c\n",ch); printf("%s\n",str); printf("%s\n",sentence); 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 →
include
include
include
include
int main() { char ch; char str[100]; char sentence[100]; scanf("%c",&ch); scanf("%s",str); scanf("\n"); scanf("%[^\n]%*c",sentence);
}