我一直在檢查Google一個小時。我曾嘗試使用typdef,但我得到了相同的結果。我在結構範圍方面有點混亂。我確信這只是我失蹤的一件愚蠢的事情。C - 在多種功能中使用結構
例,打印0:
#include <stdio.h>
struct info
{
int i;
};
struct info testinfo;
int test()
{
testinfo.i = 5;
}
int main()
{
printf("%d", testinfo.i);
}
什麼是你的實際問題? –
這是什麼問題?你的榜樣也沒有意義。你永遠不會調用函數測試,並嘗試打印未初始化的字符串。 –
-1:沒有真正的問題。示例代碼沒有顯示任何內容 – eyalm