7 lines
122 B
C
7 lines
122 B
C
#include<stdio.h>
|
|
|
|
int main() {
|
|
printf("Content-type: text/plain\n\n");
|
|
printf("Hello from C\n");
|
|
return 0;
|
|
}
|