hello all . well its pretty simple but i need to get this for loop sorted before i can move on.
#include <iostream.h>
void square();
void circle();
void arrow();
void diamond();
using std::cout;
using std::endl;
void square()
{
//first line
for (int e = 1; e >= 9; e++)
{
cout << "*";
}
}
int main()
{
square();
return 0;
}
so thats it .. and it wont print the stars . if i comment out the loop then it will display a star. so i dont know whats going on i cant see any error in the syntax or logic. so any help is appreciated thank you.