23.02.2013, 01:39
Legal.
PHP код:
#include <stdlib.h>
#include <stdio.h>
#include <locale.h>
int main() {
setlocale(LC_ALL, "");
system("title Hellow world!");
system("color f0");
for ( int i = 10; i > -1; i-- ) {
printf("\tHellow world!\n");
}
system("pause");
return false;
}