5.10 Declarations & initialization5 Notes5.8 Operators -- 2 Bitwise5.9 character functions -- 1

5.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: ltaber@pima.edu ** My new Home at GeoApps in Tucson ** The Pima College Site

5.10 Declarations & initialization5 Notes5.8 Operators -- 2 Bitwise5.9 character functions -- 1