What does space in scanf() exactly mean????
what's the difference between these two:
scanf("%d ", &num);
and
scanf("%d", &num);
THANKS
Printable View
What does space in scanf() exactly mean????
what's the difference between these two:
scanf("%d ", &num);
and
scanf("%d", &num);
THANKS
Why don't you want to try these both variants and compare them?
And how about reading the documentation about scanf format specifications?