ciabatta/test.c

9 lines
104 B
C

#include <stdio.h>
int main() {
char string[] = "hi";
printf("%s\n", string);
return 0;
}