I have a very simple program that just prints the number of newlines as an integer and I get a "D" after every number.
Sample input:
d [enter]
e [enter]
f [enter]
Ctrl-D [enter]
Sample output:
3D
What am I doing wrong?
This is verbatim from The C Programming Language 2nd edition, pg. 19:
#include <stdio.h>
main()
{
int c, nl;
nl = 0;
while ((c = getchar()) != EOF)
if (c == '\n')
++nl;
printf("%d\n", nl);
}