ciabatta/test/test_printf.c

9 lines
98 B
C

#include <stdio.h>
#include <stdlib.h>
int main() {
printf("%f\n", 3.1415);
return 0;
}