Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

how to stop scanf from adding a new line in c

For a simple solution, you could add a space before the format specifier when you use scanf(), for example: scanf(" %c", &ch); The leading space tells scanf() to skip any whitespace characters (including newline) before reading the next character, resulting in the same behavior as with the other format specifiers.
 
PREVIOUS NEXT
Tagged: #stop #scanf #adding #line
ADD COMMENT
Topic
Name
7+5 =