Quote:
|
Originally Posted by Obi
I'm getting the following error message:
"Warning [2058] call of function without prototype" when I try to do the following code:
printf("Seconds: %d \n",seconds);
Problems?
|
you need to put
Code:
#include "printf_lib.h"
at the beginning of every file that you want to use printf in, or else the compiler will yell at you like that.