View Single Post
red_cartoon's Avatar
red_cartoon Posts: 52, Reputation: 33
Junior Member
 
#2

Nov 20, 2007, 10:07 AM
Say the other file is other.c

You have to include this in you current file using :

# include "other.c"

Make sure you don't have a main() in the other.c
Now you can call the functions in other.c in the current file as well.
Helpful