Quote
Originally posted by QuestorSilvanthus
By the way Wadzilla your program doesn't work in C++ ISO DevC++. It's probably C but it should still work. :(~Q
LOL, it’s not a full program….there’s alot I didn’t include, to save space. But it’s in C, and it’s really just a silly little bit of code, but if you want to run it, try this:
#include <stdio.h>
int main(int argc, char *argv[])
{
int penis = 6;
for( ; penis <= 10 ; ++penis)
printf(“\n%d”, penis);
printf(“\n\nPE works!\n\n”);
system(“PAUSE”);
}