Hi there, is it possible leave a scanf blank? For example my code is:
scanf("%s%s",&a,&b);
After entering the string for "a", I would like to leave "b" blank so I press enter but it just jumps over to the next line, is there a way to leave a "b" blank?
I tried using this:
scanf("%s%[^\n]s",&a,&b);
And it works when I want to press enter, but whenever I input a "b" string, it would come out as " string". For example I input in "ls /root", string "b" would be registered as " /root", as you can see there is a whitespace before /root, therefore problem still exists.
Any help would be appreciated, thanks :D