摘要:
001、输出整型数据,直接输出 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { printf("[%d]\n", 123); return 0; } [root@PC 阅读全文
摘要:
001、 测试 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { int i = 10; double j = 5.8; printf("i + j = %f\n", 阅读全文