string typeVisa (string str); int main(){ string credit_card; string type; getline(cin, credit_card); type = typeVisa(credit_card); } string typeVisa (string str){ int digit1; int digit2; digit1 = atoi(str[0]); digit2 = atoi(str[1]); // code continues and returns a string } argument of type "char" is incompatible with parameter of type "const char *" What does this mean ^^?