Hi,
in the next example code:
#include <iostream>;
using namespace std;
#include <iomanip>;
int main(int argc, char *argv[])
{
for(int i = 1; i <= 28; i++)
{
cout << setw(3)<< i;
if(i%7 == 0)
{
cout << endl;
}
}
system("PAUSE");
return 0;
}
i compiled and i have no errors, but i want understand two lines:
1- (int argc, char *argv[]) .. what that refer to ..?
2- if (i%7 == 0)