Kategori arşivi: stdio.h

perror

2.12.7.1 perror Declaration: void perror(const char *str); Prints a descriptive error message to stderr. First the string str is printed followed by a colon then a space. Then an error message based on the current setting of the variable errno is printed.

Hata Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

ungetc

2.12.5.11 ungetc Declaration: int ungetc(int char, FILE *stream); Pushes the character char (an unsigned char) onto the specified stream so that the this is the next character read. The functions fseek, fsetpos, and rewinddiscard any characters pushed onto the stream. Multiple characters pushed onto the stream are … Okumaya devam et

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

puts

2.12.5.10 puts Declaration: int puts(const char *str); Writes a string to stdout up to but not including the null character. A newline character is appended to the output. On success a nonnegative value is returned. On error EOF is returned.

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

putchar

2.12.5.9 putchar Declaration: int putchar(int char); Writes a character (an unsigned char) specified by the argument char to stdout. On success the character is returned. If an error occurs, the error indicator for the stream is set and EOF is returned.

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

putc

2.12.5.8 putc Declaration: int putc(int char, FILE *stream); Writes a character (an unsigned char) specified by the argument char to the specified stream and advances the position indicator for the stream. This may be a macro version of fputc. On success the character is returned. … Okumaya devam et

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

gets

2.12.5.7 gets Declaration: char *gets(char *str); Reads a line from stdin and stores it into the string pointed to by str. It stops when either the newline character is read or when the end-of-file is reached, whichever comes first. The newline character is … Okumaya devam et

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

getchar

2.12.5.6 getchar Declaration: int getchar(void); Gets a character (an unsigned char) from stdin. On success the character is returned. If the end-of-file is encountered, then EOF is returned and the end-of-file indicator is set. If an error occurs then the error indicator for the … Okumaya devam et

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

getc

2.12.5.5 getc Declaration: int getc(FILE *stream); Gets the next character (an unsigned char) from the specified stream and advances the position indicator for the stream. This may be a macro version of fgetc. On success the character is returned. If the end-of-file … Okumaya devam et

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

fputs

2.12.5.4 fputs Declaration: int fputs(const char *str, FILE *stream); Writes a string to the specified stream up to but not including the null character. On success a nonnegative value is returned. On error EOF is returned.

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın

fputc

2.12.5.3 fputc Declaration: int fputc(int char, FILE *stream); Writes a character (an unsigned char) specified by the argument char to the specified stream and advances the position indicator for the stream. On success the character is returned. If an error occurs, the error indicator … Okumaya devam et

I/O Karakter Fonksiyonları, Kütüphane, stdio.h kategorisine gönderildi | , , , , , , , , , , , , , , , , , , ile etiketlendi | Yorum bırakın