Hi, I wrote a code by using C language as follows:
main()
{
float x[10][10]; int i,j; clrscr();
scanf("%d%d",&i,&j);
for(i=0;i<3;i++)
for(j=0;j<3;j++)
scanf("%f",&x[i][j]);
......
}
When i run this program, there is an ABNORMAL TERMINATION with the
error like 'FLOATING POINT CONVERSIONS NOT LINKED'.
Would you mind tell me what i have mistaken ?
my OS: Windows XP Compiler: TurboC