cgi/bin/index.c

16 lines
295 B
C
Raw Normal View History

2024-04-30 01:11:01 +02:00
#include<stdio.h>
int main() {
printf("Content-type: text/plain\n\n");
2024-04-30 01:36:14 +02:00
printf("Hello from C!\n\n");
int c;
FILE *file;
file = fopen("index.c", "r");
if (file) {
while ((c = getc(file)) != EOF)
putchar(c);
fclose(file);
}
2024-04-30 01:11:01 +02:00
return 0;
}