#include<stdio. h>
main()
{
int i;
for(i=1; i<=100; i++)
printf("%d\n", i);
}
for this program in turboc I get the error
linker error: undefined symbol '_printf' in module numprin.c
linker warning: no stack
can any one explain solving my problem
main()
{
int i;
for(i=1; i<=100; i++)
printf("%d\n", i);
}
for this program in turboc I get the error
linker error: undefined symbol '_printf' in module numprin.c
linker warning: no stack
can any one explain solving my problem
Comment