Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
417 views
in Technique[技术] by (71.8m points)

scanf - C skipping one command of a function?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Point 1 [Programmatic error]

The problem here is the usage with %c format specifier. It counts the previously entered , stored by pressing the ENTER key after previous input. What you want is

scanf(" %c", &tag[i].owner);
       ^
       |
    note the space

to skip any leading whitespace like character (including ) before the actual input.

Point 2 [Logical Error]

As per your code here, to scan a string input, you need to use %s format specifier.

So, finally, your code should look like

   scanf("%s", tag[i].owner);    // if tag[i].owner is char array

or

  scanf(" %c", &tag[i].owner);    // if tag[i].owner is a char, just in case

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...