#include struct punkt{ int x; int y; }; int main(void){ struct punkt p1; p1.x=17; p1.y=23; printf("x=%d\n", p1.x); return 0; }