Skip to content

Instantly share code, notes, and snippets.

@LandonJones
Created August 1, 2019 13:58
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main(int argc, char* argv[]){
int a = 12;
char buf[15] = "Jimmy Johns";
int b = 8;
printf("It has been %d years since %s closed, student graduation rates at UD have dropped to %d percent", a, buf, b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment