I'm getting this error: "no instance of constructor matches the argument list"
I don't get what am I doing wrong? why can't it convert the "someone" const char[8] to char* (as it is in the constructor) I'd love to get some help, thank you so much!
Constructor:
Student::Student(long id, char* name) {
...
}
Main:
Student s1(123456789, "someone");