I keep getting the following errors and I can't figure out what is wrong.
22 [Warning] passing arg 1 of `readVal' from incompatible pointer type
100 syntax error at end of input
Someone help me pleaseCode:#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #define pi 3.146 #define brakeFactor 0.7 double readVal (char *carModel,double rSlope, double sLength); double calculateSpeed (double rSlope, double sLength); int main () { double all[300], pass[300], slopeRad, slopeTangent, speedArray[200]={0}, sum=0, speed, sLength, sLengthArray[200]={0},rSlope,rSlopeArray[200]={0}; char carModel[1000], carModelArray[200][1000],*carModelP; int count=0, i; carModelP=carModel; while (sLength != 999) { for (i=0; i<2; i++); { all[i]= readVal(&carModel,rSlope,sLength); } sLength = all[0]; if (sLength == 999) { break; } else { rSlope = all[1]; speed = calculateSpeed(rSlope,sLength); sum = sum + speed; count = count + 1; for (i=0;i<count;i++) { sLengthArray[count]= sLength; rSlopeArray[count]= rSlope; strcpy(carModelArray[count],carModel); speedArray[count]= speed; } } printf ("|\n"); printf ("|\tHISTORICAL DATA FROM SPEEDING CARS\n"); printf ("|\tSkidlength\tRoadSlope\tSpeed\n"); for (i=1; i<=count; i++) { printf("|\t%.3lf\t\t%0.lf\t\t%.2lf\n", sLengthArray[i], rSlopeArray[i], speedArray[i]); } printf ("|\n"); system ("pause"); return 0; } double readVal (char *carModel,double rSlope, double sLength) { double all [300]; int i; printf ("Please enter the car model.\n"); scanf ("%s", *carModel); do { printf ("Please enter a skid length.If 999 is entered, no calculations will be done\n"); scanf ("%lf", &sLength); } while(sLength <0); if (sLength == 999) { all[0]= sLength; return all[0]; } else { do { printf ("Please enter a road slope between -30 and 30.\n"); scanf ("%lf", &rSlope); } while (rSlope<-30||rSlope>30); } all[0]=sLength; all[1]=rSlope; for (i=0; i<2; i++); { return all[i]; } } double calculateSpeed (double rSlope, double sLength) { double slopeRad, slopeTangent, speed; slopeRad = rSlope*(pi/180); slopeTangent= sin(slopeRad)/cos(slopeRad); speed = sqrt(30*sLength*(slopeTangent + brakeFactor)); return speed; }



LinkBack URL
About LinkBacks



