Discussions Q&R
problem with asterisk
1 Vote
1 Réponsecan 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 Votes
3 RéponsesWhy not normal I/O
0 Vote
1 RéponseTime Limit exceeded
0 Vote
2 Réponseswhat will be output??
#include <iostream>
using namespace std;
int main(int a)
{
cout << a << "\n";
return 0;
}
int main(char *a)
{
cout << a << endl;
return 0;
}
int main(int a, int b)
{
cout << a << " " << b;
return 0;
}
int main()
{
main(3);
main("Subodh");
main(9, 6);
return 0;
}
if output is compilation compilation error then how can we overload "main" function in C++
0 Vote
5 RéponsesCode problems D: Help?
0 Vote
2 RéponsesTransparent Problems
0 Vote
1 RéponseWhy is there error?
0 Vote
2 RéponsesIndetationError
0 Vote
1 RéponseAujourd'hui en vedette
OOP python questions
1 Votes
What's wrong with my code?
1 Votes
Python loops
1 Votes
Web page
1 Votes
What is a web browser intension?
1 Votes
Percobaan
0 Votes
Mentors
0 Votes