Обсуждения
When do you hit "compile"?
9 голосов
6 ответовJava vs C++ compile speeds
17 голосов
11 ответовCompiled Python
8 голосов
1 ответWhat is linking in C++.....?
2 голосов
1 ответTaking input in runtime terminal
5 голосов
1 ответError connection
0 голосов
1 ответVirtual functions
1 голос
2 ответов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 голосов
5 ответовWhy is this Code not working
0 голосов
5 ответовWhy cant we do graphics in sololearn
2 голосов
1 ответgetting error when try to use this code
System.out.printf("my name is %s","Roy");
it's showing like: exception in thread"main" Java.lang.Error: unresolved compilation problem:
the method printf(String,Object[ ]) in the type printstream is not applicable for the arguments (String,int)at tutorial 19.App.main(App.java:11)
0 голосов
3 ответовWhy is this code not running ???
0 голосов
2 ответовАктуальное сегодня
Best Python Calculator Code
1 Votes
New code
1 Votes
Clean Code
3 Votes
How would you solve the part of the C# Intermediate code project that requires operator overloading?
0 Votes
Hello Everyone
0 Votes