Final Exam Cheat Sheet Preview

This is some content you can expect to see already included on your final exam cheat sheet.

Format Specifiers

Format Specifier(s) C Data Type
%d or %i signed integers
%u unsigned integers
%f signed floats
%lf signed doubles
%ld or %li long integers
%lu long unsigned integers
%lld or %lli signed long long integers
%llu unsigned long long integers
%zu size_t
%c character
%s string

Useful Includes

#include <stdio.h> provides:

#include <string.h> provides:

#include <ctype.h> provides:

#include <stdbool.h> provides:

#include <stdlib.h> provides: