#include<stdio.h>
#define MAX 4
main()
{
float A[MAX];
int i;
for(i=0;i<MAX;i++)
scanf("%f",&A[i]);
return 0;
}
im using Visual C++ and doesnt give me any compilation error it keeps giving me a run time error after i enter the 1st number i can't figure out whats wrong :S help?