c基础
文章平均质量分 77
haitun425
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
string,char,char*,char a[] 占字节数, 以及sizeof,strlen(),str.length()的用法
// studystring.cpp : // #include "stdafx.h" #include #include using namespace std; int main(int argc, char* argv[]) { cout"char,char*,string 在C++中的占几个字节: --------------转载 2013-09-09 09:55:09 · 902 阅读 · 0 评论 -
网易课程-玩转c语言 基础课堂-课时1-6
1、c语言框架 #include int main() { printf(“I am coming!”); //stdio.h头文件里面包含的工具 return 0; } 2、帮你做计算 #include int main() { Int a,b,c; a=10; b=20; c=a+b; pr原创 2014-02-24 17:40:45 · 775 阅读 · 0 评论
分享