• The function gets () in C

    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
  • The sprintf () function in C

    The sprintf () function in C
    The int sprintf function (char * str, const char * format, ...) in the standard C library sends the formatted output to a string str.
  • Function vfprintf () in C

    Function vfprintf () in C
    The int vfprintf function (FILE * stream, const char * format, va_list arg) in the Standard C library sends the formatted output to a stream using a parameter list.
  • The function vsprintf () in C

    The function vsprintf () in C
    The function int vsprintf (char * str, const char * format, va_list arg) in the standard C library sends the formatted output to a string string using a parameter list.
  • Function fscanf () in C

    Function fscanf () in C
    The int fscanf function (FILE * stream, const char * format, ...) in Library C reads the input formatted from a Stream.
  • Function scanf () in C

    Function scanf () in C
    The function int scanf (const char * format, ...) in Library C standard reads input that has been formatted from stdin.
  • The function sscanf () in C

    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.
  • Function fgetc () in C

    Function fgetc () in C
    The function int fgetc (FILE * stream) in C Library standard takes the next character (an unsigned char) from the given Stream and increases the position indicator for that Stream.
  • Function fgets () in C

    Function fgets () in C
    Char * fgets (char * str, int n, FILE * stream) in Standard C library reads a line from the given Stream and stores it in the string pointed by str. It stops when any of the
  • Function fputc () in C

    Function fputc () in C
    The function int fputc (int char, FILE * stream) in Library C writes one character (an unsigned char) defined by the char parameter to the given Stream and increases the position
  • Function fputs () in C

    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).
  • The function getc () in C

    The function getc () in C
    The function int getc (FILE * stream) in C Library standard takes the next character (an unsigned char) from the given Stream and increases the position indicator for that Stream.
  • setjmp.h in C

    setjmp.h in C
    The file header named setjmp.h in C Library defines the macro setjmp (), a longjmp () function, and a variable type jmp_buf, to ignore the regular function call and return the
  • signal.h in C

    signal.h in C
    The header file named signal.h in Library C defines a type of variable sig_atomic_t, two function calls, and a number of macros to handle the different signals reported during
  • Function raise () in C

    Function raise () in C
    Function int raise (int sig) in Library C creates sig signal. The sig parameter is compatible with the SIG macro.
  • Function signal () in C

    Function signal () in C
    Void function (* signal (int sig, void (* func) (int)) (int) in Library C establishes a function for signal processing (eg a signal handler).
  • stdarg.h in C

    stdarg.h in C
    The file header named stdarg.h in Library C defines a type of va_list variable and 3 macros that can be used to retrieve parameters in a function when the number of parameters is
  • stddef.h in C

    stddef.h in C
    The file header named stddef.h in C Library defines various types of variables and macros. Many of these definitions are also present in other headers.
  • stdio.h in C

    stdio.h in C
    The header file named stdio.h in Standard C Library defines three variable types, a number of macros and various functions to implement input and output.
  • The function fclose () in C

    The function fclose () in C
    Int fclose function (FILE * stream) in Library C closes Stream. All buffers are flushed (erased or moved to the periphery).