摘要: int 变量的默认初始值为0 这可以写个小程序测试下: #include <stdio.h> int main() { int i; if (i == 0) { printf("Hola, mundo, i = %d\n", i); } return 0; } 运行结果为: Hola, mundo, 阅读全文
posted @ 2020-05-05 12:13 profesor 阅读(5639) 评论(0) 推荐(0) 编辑