We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- C
- Introduction
- Playing With Characters
- Discussions
Playing With Characters
Playing With Characters
Sort by
recency
|
868 Discussions
|
Please Login in order to post a comment
include
include
include
include
int main() {
}
Here is HackerRank Playing with characters solution in c
How is this supposed to be not correct??? Why in the world do we need to use their way only???
include
include
include
include
int main() { char ch; char s[99]; char sen[99]; scanf("%c",&ch); printf("%c\n",ch); scanf("%s",&s); printf("%s\n",s); fgets(sen,50,stdin); printf("%s",sen);
}
How is this supposed to be not correct??? Why in the world do we need to use their way only???