answersLogoWhite

0

  1. its an standard input and output
User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Wap to copy one file to another in C programming?

#include<stdio>


Why your c compiler shows that unable to open file stdio?

The include-directory is not set.


Commonly used includes file in C?

Some of them: stdio, stdlib, stddef, string, stdarg, signal.


How files are created and used in c?

Files are created and used in C with the stdio library functions fopen, fread, fwrite, fprintf, fscanf, fclose, etc. A trivial example that writes one line to a file... FILE *file; file = fopen ("somefile.txt"); if (file == null) { ... error code ... } else fprintf (file, "This is a line of data in a file\n"); fclose (file); } This will create and write a standard "text" file that can be subsequently opened with a standard text editor such as notepad (windows) or vi (unix).


What is stdio.h means in c language?

#include <stdio.h> means that the compiler needs to grab all function definitions, implementations, variables, etc. from that file. In this case, stdio stands for "Standard Input/Output". An example of a function in stdio.h is "printf".


What is a cs file?

It's a C# file. C Sharp File


What is mean by file in c?

A file in C means a file found in your computer's C Drive. Start > My Computer > C Drive


What is a 'D' file as opposed to a 'C' file?

There is no such thing as a standard "D" or "C" file. Please restate the question.


What is a statement use to open data file in c?

FILE* file; file = fopen("some-file.dat");


How many file types are avilable in C?

You can open any file with C, since it does not distinguish between file types. It's the way you read from the file.


How do you create a header file and implementation of code in another c file and both should be retrieved by another .c file?

tanga


How do you create a new C source file?

A source file is nothing more than a text file with code. Therefore, any file created in Notepad and saved as "anyname.c" is considered a C source file.