Heres my code
//numbersandshit
#include <iostream>
using namespace std;
int name()
{
int numb, sqnumb;
for(numb=4; numb<=9; numb=numb+1)
{ sqnumb=numb*numb;
cout<<numb<<" "<<sqnumb<<endl;
}
return 0;
}
and at the end I keep undefined reference to '_Winmain@16'