Reddy
2011-11-28 18:10:05 UTC
#include
void p()
{
printf("Welcome");
}
void main()
{
p();
}
==
I saved the above program as "p.c"
but the new program is not working why?:
-------------------------------
#include
#include"p.c"
void main()
{
p();
}
-------------------------------
Compile error message:
"Body has already been defined for function 'main()' "