Tagged Questions

1
vote
1answer
42 views

Gets(string#) function skipping first gets request

I'm working on a project for my own personal leisure and learning. Part of it looks like this: #include<stdio.h> #include<string.h> wgame() { char string3[12], string2[12], ...
0
votes
3answers
68 views

scanning string in c

int main( ) { char str[200]; int n,tc; scanf("%d",&tc); while(tc--) { scanf("%d",&n); gets(str); puts(str); ...
0
votes
2answers
163 views

How can I scan strings with multiple words multiple times in C [not C++]?

I have googled many times but I cannot find a concrete answer to my question/problem. I know fgets() allows it, as well as gets(). But if i do it multiple times, there's always an error. Multiple ...
0
votes
3answers
149 views

CR character in gets() function

The user types a string, possibly separated by tabs, spaces and "enters" (CRs). I need to receive all of it; the problem is that gets() function stops the scan when the user presses the "Enter" key. ...