Pagini recente » Cod sursa (job #812769) | Cod sursa (job #2657941) | Cod sursa (job #2106845) | Cod sursa (job #1202263) | Cod sursa (job #40)
Cod sursa(job #40)
// Automated test for jrun.
// The following are parsed by test.php
// JRUN_ARGS = --time-limit 100 --memory-limit 16000
// JRUN_RES = OK: time [0-9]+ms memory [0-9]+kb: Execution successful.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(void)
{
FILE* f = fopen("test.out", "wt");
fprintf(f, "Hello World!!!");
fclose(f);
return 0;
}