I have just started with a tutorial in c++ and i wonder if anyone can tell me what´s wrong with this code
#include <iostream>
using namespace std; //so the program can see cout and end1
int main()
{
for (int x = 0; x < 10; x++) {
cout<< x <<end1;
}
cin.get();
}