b677d3b ^
1 2 3 4 5 6 7 8 9 10 11 12
#include <stdio.h> #include "add.h" int main() { int added = add(4, 5); printf("Adding 4 and 5: %d\n", added); persistInt(6); int persisted = retrieveInt(); printf("Persisted number: %c\n", persisted); return 0; }