You are viewing a single comment's thread. Return to all comments →
here is my approach:
int main() { char ch; char s[20]; char sen[50];
scanf("%c", &ch); scanf("%s", s); getchar(); fgets(sen, sizeof(sen), stdin); printf("%c\n%s\n%s", ch, s, sen);
}
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 →
here is my approach:
include
int main() { char ch; char s[20]; char sen[50];
}