What is the purpose of stdin ?

Status
Not open for further replies.

firipu

Newbie level 4
Joined
Oct 30, 2007
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,306
can anyone tell me what is the propouse of stdin
for example in
fgets(texto,MAX,stdin);
thanks
 

stdin

When a c program is started, the os environment opens three files and file pointers to them. The files are the standard input, the standard output and the standard error. The file pointers are called stdin, stdout and stderr. They are declared in <stdio.h>
Normally, stdin is connected to the keyboard and stdout, stderr are connected to the screen.
They can be redirected to files or pipes if you want to.
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…