How does the compiler know the prototype of sleep function or even printf function, when I did not include any header file in the first place.
Moreover, if I specify sleep(1,1,"xyz") or any arbitrary number of arguments, the compiler still compiles it. But the strange thing is that gcc is able to find the definition of this funciton at link time, I don't understand how is this possible, because actual sleep() function takes a single argument only, but our program mentioned three arguments.
Would appreciate any help on this issue?
/****************************/
int main()
{
short int i;
for(i = 0; i<5; i++)
{
printf("%d",i);print("code sample");
sleep(1);
}
return 0;
}
