Created
August 1, 2019 13:58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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