6.10 Declarations & initialization6 Notes6.8 Operators - 2 Bitwise6.9 character functions -- 1

6.9 character functions -- 1

getc(FILE *fp) Read a char from *fp
getchar() #define getchar() getc(stdin)
ungetc(FILE *fp) Returns one char to *fp
ungetchar() Returns one char to stdin
putc(int c, FILE *fp) "Prints" one char to *fp
putchar(int c) #define putchar(c) putc(c,stdin)

Instructor: Louis Taber, louis.taber.at.pima at gmail dot com (520) 206-6850
My web site in Cleveland, OH
The Pima Community College web site

6.10 Declarations & initialization6 Notes6.8 Operators - 2 Bitwise6.9 character functions -- 1