1 2 3 4 5 6 7 8 9
#include <stdio.h> typedef public struct { char *name; } person; public void say_hi(person to_whom) { printf("Hello, %s!\n", to_whom.name); }