>DansTonCode();

Tous les codes sources "Mais pourquoi ?"page 6

C++
 26 June, 2016 à 01:30
#291
int i, sum = 0;
for(i = 0; i < 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10; i ++) {
  sum += 1;
}
printf("sum: %d", 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10);
C++
 24 June, 2016 à 01:30
#289
            if(1==1)
            {
                if((rc == 0) && (gbl_type == PROCESS_TYPE_DOC))
                {
                    config.Document("predoc.htm");
                }
                else if((rc == 0) && (gbl_type != PROCESS_TYPE_CHECK))
                {
                    files.SetConfig(config, gbl_type, gbl_suppress_delete);
                }
                else if(gbl_type != PROCESS_TYPE_CLOSE)
                {
                    LogMessage("\n:::NORMAL:CHECK COMPLETE\n");
                }
            }
PHP
 23 June, 2016 à 01:30
#288
function encrypt_data($data){
  return base64_encode($data);
}