Q&A Discussions
what 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
Pygame
3 Votes
Write substrings of the string!
0 Votes
Do you know what is DSA
0 Votes
What is wrong here?
0 Votes
Что тут с пайтоном?
1 Votes
Pygame
0 Votes
Messages in Sololearn
0 Votes