string.hApril 17, 2026
Homework 9 due Monday on Gradescope
Final Exam Thursday April 30, 2026 at 7pm
string.h manual page and examples
strcmp(), mcp(), strcat()
int printf(const char *format, ...);
int fprintf(FILE *stream, const char *format, ...);
Could you write printf?
stdio.h manual page
int printf(const char *format, ...);
printf("hi: %s and %d\n", mystr, myint);