Thread Closed

c putchar() and getchar()

 
Share Thread
Jul31-08, 12:30 AM   #1
 

c putchar() and getchar()


Hello.

So I am trying to write a simple copy program. For whatever reason, the program will never stop running! Even if I directly enter the value of EOF (-1 in my case), it still goes.


Code:
#include <stdio.h>

main()
{
	int c;
	c = getchar();

	while ( c != EOF)  {
		putchar(c);
		c = getchar();
	}
}
PhysOrg.com science news on PhysOrg.com

>> New language discovery reveals linguistic insights
>> US official: Solar plane to help ground energy use (Update)
>> Four microphones, computer algorithm enough to produce 3-D model of simple, convex room
Jul31-08, 02:54 AM   #2
 
If you're running that in a dos box under Windoze, then EOF is defined as Control Z on standard in.

Try that.
Jul31-08, 09:43 AM   #3
 
I'm using putty and compiling with gcc over ssh. I tried control z and it outputed "suspended" and ended the program, however that was not what I wanted as it did not continue the program after the while loop (if say, I added printf("done\n"); after the loop). Any suggestions?
Jul31-08, 09:48 AM   #4
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor

c putchar() and getchar()


On unix, EOF on a console is ctrl D
Ctrl Z puts the program into the background, which isn't what you want if it is taking input from stdin.
To get the program back type 'fg' then kill it with ctrl C
Jul31-08, 09:59 AM   #5
 
Wow that worked! Thank you very much mgb_phys! Would someone mind explaining in more detail why that works--I mean, if EOF is simply the integer -1, then why is it that letting c = -1 does not end the file. What does control D actually input into the program?
Jul31-08, 10:06 AM   #6
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
Thats what the operating system is for.
It's job is to read a file off disk and present it to the program a byte at a time, or in your case, read the keyboard convert it into ascii characters and send them to your program You obviously need a way of signalling that you have finished entering your text. One way would be to have a special key 'end' on the keyboard but Unix was designed to work on many different machines with different keyboards so uses ctrl+letter for all these extra characters.

This is also the reason getchar() returns an int not a char. If it only handled chars there wouldn't be any room for the extra commands like EOF.

ps Don't rely on EOF being -1, it can be anything the library and OS choose, always compare it to EOF.

pps. I didn't want to confuse things before, but the more common way to write the code would be:
while ( (c=getchar()) != EOF ) {
putchar(c);
}
Then you don't need the initial getchar() outside the loop. This is a common source of bugs, if it gets removed or other code gets called between it and the test.
Jul31-08, 10:13 AM   #7
KTC
 
Or
Code:
while ( (c=getchar()) != EOF )  {
	putchar(c);
}
Jul31-08, 10:27 AM   #8
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
Thanks KTC, I fixed the typo.
Jul31-08, 11:03 AM   #9
 
Interesting. Thank you very much for the help.
Jul31-08, 12:23 PM   #10
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
Stick at Ja4Coltrane. Starting at this level is important if you ever want to really understand computers whatever language you use.
Just hooking the Java input thing to the Java output thing and not knowing what is actually happening only gets you so far.
Dec5-09, 12:44 AM   #11
 
genious.man..........mgb_phys
May1-10, 11:49 PM   #12
 
Ja4Coltrane, your original post helped me finish one of my comp sci. projects!

thanks for your post!
Thread Closed