Correct syntax in C++ isasm (NOP);---Not sure what you are after when it comes to structs, but here is an example of structs and pointers:[code]typedef struct{ int x; double y;} MyStruct;...MyStruct ms;MyStruct* ptr = &ms;ptr->x = something; // access the element pointed at by the struct[/code]The main difference is that a pointer-to-struct uses the -> operator rather than the . operator.