Skip to content

Instantly share code, notes, and snippets.

@AlexBaranowski
Created June 24, 2020 23:10
Show Gist options
  • Save AlexBaranowski/4a3e04cb707df9a1a0935d0a180bd1fa to your computer and use it in GitHub Desktop.
Save AlexBaranowski/4a3e04cb707df9a1a0935d0a180bd1fa to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include "hello2.c"
void print_hello(){
printf("Hello, World!\n");
}
int main(){
print_hello();
print_pi();
return 0;
}
#include <stdio.h>
#define PI 3.14159
void print_pi(){
printf("PI ~= %f\n", PI);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment