scanf and strcmp with c string

前端 未结 3 1816
南笙
南笙 2021-01-21 17:17

I found a nice example of how to use strcmp, but it\'s only working with fgets(), and i need to make it work with scanf. So, here\'s the code:

int main(void) {
c         


        
3条回答
  •  情话喂你
    2021-01-21 18:23

    "scanf" does take newline "\n" character as input. So you are not able to equal the both strings. if you want to equal both strings you need to remove newline"\n" form the first string ("apple" is fine).

提交回复
热议问题