Files
almond-bench/mandelbrot.c
T
2026-07-17 07:08:00 +02:00

17 lines
226 B
C

#include "stdio.h"
typedef struct {
double real;
double imag;
} Complex;
void complex_print(Complex z) {
printf("%f + %f i", z.real, z.imag);
}
int main() {
Complex z = {2.0, 4.0};
complex_print(z);
return 1;
}