Dyskusje Q&A
can someone please explain why this code keeps telling me complication error instead of outputting the value of speed.
#include <iostream>
using namespace std;
class myClass {
public:
void setcarspeed (int a){
speed=a;
}
int getcarspeed(){
return speed;
}
private:
int speed;
};
int main() {
myClass obj;
obj.setcarspeed (40);
cout<<obj.getcarspeed ;
return 0;
}
2 głosów
3 odpowiedziPopularne dzisiaj
Quiz
0 Votes
C++ Vectors
0 Votes
Code challenge
0 Votes
A Little Question Here!
1 Votes
can't understand an error
0 Votes