Considerăm declararea:
struct punct{ int x, y; } p;
Care dintre următoarele instrucţiuni este corectă din punct de vedere sintactic?
p->y=p->y+1;
p=9;
p.x=7;
p=p+1;