#include typedef struct dealie { int kwyjibo; char favouriteletter; double angle; } dealie; int main(int argv, char *argc[]) { dealie thing; dealie *anotherthing; thing.kwyjibo=3; thing.favouriteletter='j'; thing.angle=3.4; anotherthing=&thing; anotherthing->angle=17.5; printf("%i\n%c\n%f\n",thing.kwyjibo,thing.favouriteletter,thing.angle); printf("\n%f\n",(*anotherthing).angle); return 0; }