2020年5月22日 星期五

2020年5月17日 星期日

[C] 關鍵字Key word

__attribute__((unused))
消除編譯器對未使用變數的告警

eq.  char test __attribute__((unused));

----

printf("%d %s\n", __LINE__, __func__);
印出當前行號及函式名稱