Dyskusje Q&A
what is "main" really
4 głosów
6 odpowiedziFound it is actually "main"
0 głosów
3 odpowiedziwhat 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 głosów
5 odpowiedziPopularne dzisiaj
Moving image
4 Votes
Check it out
1 Votes
Do you agree with me ???
0 Votes
Want to confirm
0 Votes
Help make cool game
0 Votes
I need help again 😁
0 Votes
Python
0 Votes
Output
0 Votes