0
Why this code not give properly output in SoloLearn compiler and it's also give proper output in " VS CODE".......
2 Antworten
+ 1
Your method is called just "main()" you must specify a return type and parameters:
int main(int argc, char* argv[]){
//Your code
}
Then it will work.
0
Thanks.