My compiler (GCC) is giving me the warning:
warning: implicit declaration of function
Please help me understand why is it coming
You need to declare the desired function before your main function:
#include int yourfunc(void); int main(void) { yourfunc(); }