标签: c arguments type-conversion
以下代码存在哪些潜在问题?
short foo() { short a,b,c; b=10; c = a + b; return c; }
答案 0 :(得分:1)
变量a未初始化。它具有不确定的价值。