Ive began a book to learn c++ and in the first chapter I ran across my first question(thats never good...). In the book it says I should use this same template in every single c++
program I EVER make. The template is
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int nNumberofArgs, char* pszArgs[])
{
//code
}
How am I supposed to remember that??? If you wouldnt mind could you explain what the
includes do,I thought it might be like import from python, and using namespace std, and finally
int main(int nNumberofArgs, char* pszArgs[].
Thanks a bunch.