[Help] Code Issue
alright so i put this code into microsoft vb 2010 and im not sure if this is a user error or microsoft being stupid:
#include <stdio.h>
#include <iostream>
using namespace std;
int main()
{
int i;
for (i=0, i<10; i+1; );
{
cout << "Hello World!";
}
system ("pause");
}
when i run it it does nothing but sit there and blink when i run it. Help please?
#include <stdio.h>
#include <iostream>
using namespace std;
int main()
{
int i;
for (i=0, i<10; i+1; );
{
cout << "Hello World!";
}
system ("pause");
}
when i run it it does nothing but sit there and blink when i run it. Help please?





