摘要: #include<stdio.h>int main(void){ int f = 4; int g = 5; float h = 5.0f; printf("%d\n", f, g); printf("%d %d\n", f); printf("%d %f\n", h, g); return 0;} 上面的代码是错误的。参数不正确。第四章学习知识点:函数:strlen()关键字:const字符串:如何创建和存储字符串如何使用scanf()和printf()读取和显示字符串如何使用strlen()函数获取字符串的长度使用C预 阅读全文
posted @ 2011-12-22 04:35 [无名] 阅读(1592) 评论(0) 推荐(0) 编辑