A stream is a continuous series of bytes that flow into or out of your program. Input and output from devices such as the mouse, keyboard, disk, screen, modem, and printer are all handled with streams. In C, all streams appear as files - not physical disk files necessarily, but rather logical files that refer to an input/output source. The C language provides five "standard" streams that are always available to your program. These streams do not have to be opened or closed. These are the five standard streams:Name Description Examplestdin - Standard Input - Keyboardstdout - Standard Output - Screenstderr - Standard Error - Screenstdprn - Standard Printer - LPT1: portstdaux - Standard Auxiliary - COM1: port Note that the stdprn and stdaux streams are not always defined. This is because LPT1: and COM1: have no meaning under certain operating systems. However, stdin, stdout, and stderr are always defined. Also, note that the stdin stream does not have to come from the keyboard; it can come from a disk file or some other device through what is called redirection. In the same manner, the stdout stream does not have to appear on-screen; it too can be redirected to a disk file or some other device. See the next FAQ for an explanation of redirection.
C
Topic: Files
What is a stream?
Browse random answers:
What is File Mode?.Types Of file mode?.What is Pointer?.which one is most useful in Structure or Unoin?
How can you restore a redirected standard stream?
how to read a file line by line and print it reverse
WRITE C PROGRAMME TO CREATE A FILE AND READ A FILE.
How to obtain a path of the given file?
If errno contains a nonzero number, is there an error?
What is a stream?
How do you redirect a standard stream?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What is a file?
what are the types of file?
What is meant by file opening?
What is a file pointer?
How is a file closed ?
What is a random access file?
how to merge to file in c?
Can include files be nested?
Write a program for creating your own header file and library function?
How can I open a file so that other programs can update it at the same time?
How can I create the batch files? What is the purpose batch file and use of it?
How can we read/write structures from/to data files?
In header files whether functions are declared or defined?
What will be the content of 'file.c' after executing the following program?#include<stdio.h> int main(){ FILE *fp1, *fp2; fp1=fopen("file.c", "w"); fp2=fopen("file.c", "w"); fputc('A', fp1); fputc('B', fp2); fclose(fp1); fclose(fp2); return 0; }
If the file 'source.txt' contains a line "Be my friend" which of the following will be the output of below program? #include<stdio.h> int main(){ FILE *fs, *ft; char c[10]; fs = fopen("source.txt", "r"); c[0] = getc(fs); fseek(fs, 0, SEEK_END); fseek(fs, -3L, SEEK_CUR); fgets(c, 5, fs); puts(c); return 0; }
What will be the output of the program ?#include<stdio.h>int main(){ FILE *ptr; char i; ptr = fopen("myfile.c", "r"); while((i=fgetc(ptr))!=NULL) printf("%c", i); return 0;}
Out of fgets() and gets() which function is safe to use and why?
In a file contains the line "I am a boyrn" then on reading this line into the array str using fgets(). What will str contain?
Which of the following operations can be performed on the file "NOTES.TXT" using the below code? FILE *fp;fp = fopen("NOTES.TXT", "r+");
What is the purpose of ftell ?
What is the purpose of rewind() ?
What is the use of header file in c?
What are header files? Are functions declared or defined in header files ?
When we open a file, how does functions like fread( )/fwrite( ), etc. get to know from where to read or to write the data?
How to obtain a path of the given file?