This program is being compiled successfully but giving following linking error :
undefined symbol _main in module c0.ASM
My program is following :
#include<stdio.h>
#include<conio.h>
int main()
{
char input[] = "hello sumit kumar";
char *a;
a = input;
printf("%s", a);
getch();
return 0;
}
`