How could I make a pointer to a structure?

The structure name is New_Room

I tried

New_Room *cur_room=test_room;

and a error saying "cannot convert type test_room from type New_Room to New_Room *"

so I tried

struct *cur_room=test_room;

another conversion thing came up.

int *cur_room=test_room;

parse error came up.


How in the bloody hell do you make a pointer to a structure? Can you even do this?