#include "StdAfx.h"
#include <iostream>
using namespace std;
int main();
{
cout << "7 + 3 = " << 7 + 3 << end1;
cout << "7 - 3 = " << 7 - 3 << end1;
cout << "7 * 3 = " << 7 * 3 << end1;
return 0;
}
I get the c2447 error and idk how to fix it. Please help =)