Character input/output Functions:
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
fgetc | int fgetc( FILE * stream ); |
getc | int getc( FILE * stream ); |
fgets | char *fgets( char *str, int count, FILE *stream ); |
fputc | int fputc( int ch, FILE * stream ); |
putc | int putc( int ch, FILE * stream ); |
fputs | int fputs( const char * str, FILE * stream ); |
getchar | int getchar(void); |
gets | char *gets( char *str ); |
gets_s(C11) | char *gets_s( char *str, rsize_t n ); |
putchar | int putchar( int ch ); |
puts | int puts( const char * str ); |
ungetc | int ungetc( int ch, FILE * stream ); |
Related topics:
Library Functions in C | Standard Library in C | Header Files in C | Functions in C | Keywords in C | Data Types in C | Pointers in C
List of topics: C Programming
No comments:
Post a Comment