Create a gist now

Instantly share code, notes, and snippets.

anonymous /gist:732747e899e85c126680
Created Feb 16, 2016

What would you like to do?
//bill.c
#include<stdio.h>
void bill(char *arg)
{
printf("bill : we passed %s \n",arg);
}
//fred.c
#include<stdio.h>
void fred(int arg)
{
printf("fred: we passed %d \n",arg);
}
//program.c
#include<stlib.h>
#include"lib.h"
int man()
{
bill("Hello World");
exit(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment