Changes to I/O access

This commit is contained in:
Wayne Parham
2021-06-09 10:23:42 -05:00
parent 2a25921515
commit 7d6541274d
8 changed files with 219 additions and 583 deletions

View File

@@ -23,9 +23,8 @@ void main(void) {
}
printf( "Type a line and press ENTER, please.\n\n" );
while( c != '\r' ) {
while( c != '\n' ) {
c = getchar();
putchar( c );
}
printf( "\n\nThanks!\n\n" );