Q&A Discussions
Wow, this app is awesome
1 Vote
1 Answerwhat is a variable
-3 Votes
4 Answerswhy #ball is used?
0 Votes
2 AnswersWhat is a dataset?
0 Votes
4 Answerswhat is cin
0 Votes
2 AnswersNext level of learn required
0 Votes
1 Answerwhat is loops
0 Votes
2 AnswersReset variables & strings
0 Votes
2 AnswersHow to run Python script
0 Votes
1 Answerwhat 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 Votes
5 AnswersHot today
HTML
1 Votes
I want an advice
1 Votes
Can you build webs with java?
1 Votes
Videos
0 Votes
Comments help
1 Votes
About sololearn
0 Votes
How to make games
1 Votes