#include #include typedef struct tacka { float x; float y; } Tacka; int main(int argc, char *argv[]) { Tacka* t = (Tacka*) malloc(sizeof(Tacka)); t->x = 2; t->y = 4.5; printf("%4.2f, %4.2f\n", t->x, t->y); free(t); system("PAUSE"); return 0; }