现在有一个struct node:
struct node{ int a,b,c,d; }T[N];
我现在只想把T[N]里的a清空,我该怎么用memset写??
我直接就写了个memset(T.a,0,sizeof(T.a)),但是这是错的,正确语法到底长啥样啊/ll/ll