#include struct position { int x; int y; int z; }; int main() { struct position p = {2, 5, -3}; printf("Position: (%d,%d,%d)\n", p.x, p.y, p.z); return 0; }