#include struct foo { long bar; char baz; }; struct foo bar = {1,2}; struct foo *barptr[2] = {&bar, &bar}; struct foo **barptrptr[2] = {&barptr[0], &barptr[1]}; int main(void) { int x = 5; if (x) x++; long y = 6; y++; printf("Hello, World!\n"); return 0; }