Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top