The most basic structure of the programs you will write
#include <iostream>
int main(int argc, char const *argv[])
{
// your items
return 0;
}
The most basic structure of the programs you will write
#include <iostream>
int main(int argc, char const *argv[])
{
// your items
return 0;
}