#include <stdio.h>

int main(void) {
	struct Complex{
		float real;
		float imag;
	}a, b, c;
	
	struct Complex d = (struct Complex) {.real=3.14, .imag=-2.8};
	
	printf("Value d: {.real = %.2f, .imag = %.2f }\n", d.real, d.imag);

	return 0;
}
