+ 1
Header file in c
I have a C program named "college.c" , In "college.c" there is a function named "oct",and i have a another program named "hello.c". I want to call the oct() function in the program hello.c
2 Answers
+ 1
Just add
#include"college.c"
in hello.c and call function..
0
Martin Taylor
Why?? Can you provide a specific reason for this...This code will also execute as normal..(I figured out that it might be something like not following standard c or deprecated from c, So can you explain?)