TipsMake
Newest

Tags : running program c

Putchar () function in C
Programming C 25 May 2019

Putchar () function in C

the function int putchar (int char) in standard c library writes a character (an unsigned char) defined by the char parameter to stdout.

Read More
The function ungetc () in C
Programming C 25 May 2019

The function ungetc () in C

the function int ungetc (int char, file * stream) in the c library standard pushes the char character (an unsigned char) onto the stream given to the next character to be read.

Read More
Function tmpfile () in C
Programming C 25 May 2019

Function tmpfile () in C

function file * tmpfile (void) in standard c library create temporary files in wb + mode. the temporary file created will be automatically deleted when the stream is closed

Read More
The function gets () in C
Programming C 25 May 2019

The function gets () in C

the char * gets (char * str) function in standard c library reads a line from stdin and stores it inside the string pointed by str. it stops when the end-of-file or newline

Read More
Function fscanf () in C
Programming C 25 May 2019

Function fscanf () in C

the int fscanf function (file * stream, const char * format, ...) in library c reads the input formatted from a stream.

Read More
Function scanf () in C
Programming C 25 May 2019

Function scanf () in C

the function int scanf (const char * format, ...) in library c standard reads input that has been formatted from stdin.

Read More
The function sscanf () in C
Programming C 25 May 2019

The function sscanf () in C

the function int sscanf (const char * str, const char * format, ...) in library c standard reads the input formatted from a string.

Read More
Function fputs () in C
Programming C 25 May 2019

Function fputs () in C

the function int fputs (const char * str, file * stream) in the standard c library writes a string to the specified stream (not writing null characters).

Read More
Function feof () in C
Programming C 25 May 2019

Function feof () in C

the int feof function (file * stream) in the standard library c checks the end-of-file indicator for the given stream.

Read More
Function freopen () in C
Programming C 25 May 2019

Function freopen () in C

function file * freopen (const char * filename, const char * mode, file * stream) in library c attaches a new filename with the given stream and at the same time closes the old

Read More