Answers for "c++ main function parameters"

C++
0

c++ main function parameters

#include <iostream>

//In C++ you don't need to give parameters to your main function

int main()
{
	//code
    return 0;
}
Posted by: Guest on July-19-2021

Browse Popular Code Answers by Language