🕢

C Strings/Library Functions

TypeQuiz 4 Material

Notes

printf()

string.h functions

#include <string.h>

strncpy() / strcpy()

strncpy() documentation

strcpy() documentation

strlen()

Documentation

strncmp() / strcmp()

strncmp() documentation

strcmp() documentation

Questions & Answers

Practice question: a programmer is attempting to copy a string s1 into a buffer of characters s2. Can you spot the issue with the code below?

strncpy(s2, s1, strlen(s1));