我在一些C程序中看到了以下代码片段:
char *x; if (s == NULL) return(NULL); if ((x = strdup(s))) return x;
返回多余括号的目的是什么(NULL)?
c
c ×1