Skip to content

Instantly share code, notes, and snippets.

@dheaney
Created September 20, 2017 23:54
Show Gist options
  • Save dheaney/5ca2dccaa5cdb541c246e6c923509d34 to your computer and use it in GitHub Desktop.
Save dheaney/5ca2dccaa5cdb541c246e6c923509d34 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include "hello.h"
void hello() {
printf("HELLO\n");
}
void hello();
#include <stdio.h>
#include "hello.h"
int main() {
printf("Hi\n");
hello();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment