string.h

CS 2130: Computer Systems and Organization 1

April 17, 2026

Announcements

string.h manual page and examples

strcmp(), mcp(), strcat()

printf

int printf(const char *format, ...);
int fprintf(FILE *stream, const char *format, ...);

Could you write printf?

stdio.h manual page

printf

int printf(const char *format, ...);

printf("hi: %s and %d\n", mystr, myint);