glPrint("and doing more than 1!!!");

Started by
20 comments, last by Jaffer 22 years ago
Hehe yeah you probably can call main inside main. Scary thought!

Helpful links:
How To Ask Questions The Smart Way | Google can help with your question | Search MSDN for help with standard C or Windows functions
Advertisement

  unsigned long i = 0;const unsigned long MAX = 13;int main(){	cout << i << endl;	++i;	if(i > MAX)		return 0;	return main();}  

This topic is closed to new replies.

Advertisement