Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

standard streams how to enter them ie: stdio,stdout,stderr etc

+3 votes
asked Dec 22, 2017 by Richard Harris (150 points)
in my c book it describes the various standard streams yet when I include them the compiler tells me no such library exists is it this or that the format in which I enter it is incorrect <stdio.h> , <stdout.h>, <stderr.h> etc

1 Answer

0 votes
answered Dec 24, 2017 by anonymous
As far as I know, you can use <stdio.h> which should cover standard intput/output functionalities.
Here is simple code snippet using stdio.h

https://onlinegdb.com/Hyk5QAnff
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...