c #include <stdio.h> #include <string.h> struct { char* name; float penis; } op = { "swedeball", 10.22 }; int main(void) { if (strcmp(op.name, "swedeball") == 0) printf("%.2f... it's never been more over\n", op.penis); return 0; }