我有以下代碼:如何訪問結構成員與結構指針
#include <stdio.h>
#include <stdlib.h>
#include<string.h>
struct tag
{
int x;
};
int main()
{
struct tag stvar;
struct tag*stptr=&stvar;
*(stptr).x=9;
return 0;
}
我可以使用stptr->x
但不*(stptr).x
。我越來越 request for member 'x' in 'stptr', which is of pointer type 'tag*' (maybe you meant to use '->' ?)
我在哪裏錯了?如何使用結構指針訪問成員?