I guess there is a syntactical error in if statement on line 68 while using or operator.
int checkifAmex (long y)
{
long x = y;
if (x/1000000000000 == 34 or x/1000000000000 == 35)
{
return 1;
}
else
{
return 0;
}
}
Help appreciated.
https://edstem.org/us/courses/176/discussion/1706076[learn_press_profile]