上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 95 下一页
摘要: 本文作者girlrong是网易广州社区的C语言版版主,这篇文章被选在精华区。很是不错,不敢独享!据说她乐于助人,虚心诚恳,颇受网友欢迎。只可惜现在已退隐江湖了。在最近学习C语言过程中,了解些前辈大牛的经验看法 曾经碰到过让你迷惑不解、类似于int * (* (*fp1) (int) )... 阅读全文
posted @ 2013-03-15 16:38 N3verL4nd 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 转载于:http://www.cnblogs.com/jerry19880126/archive/2012/08/14/2638192.html 隐式转换(implicit conversion) short a=2000; int b; b=a; short是两字节,int是... 阅读全文
posted @ 2013-03-15 15:21 N3verL4nd 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 用人单位给计算机系学生的一封信(超长评论版) 今天上午又去招聘了,加上前面一段时间的招聘经验,有些话不吐不快 我们希望找到能干活的人,就是能编程序的人,但是我感觉现在刚毕业的人里面,包括名校的,能干活的人比例非常的低,大概不超过百分之一 很多人都说,没有参加过实际的项目,没有经... 阅读全文
posted @ 2013-03-14 20:18 N3verL4nd 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 指向二维数组的指针 一. 二维数组元素的地址 为了说明问题, 我们定义以下二维数组: int a[3][4]={{0,1,2,3}, {4,5,6,7}, {8,9,10,11}}; a为二维数组名, 此数组有3行4列, 共12个元素。但也可这样来理解,数组a由三个元素组... 阅读全文
posted @ 2013-03-14 17:30 N3verL4nd 阅读(594) 评论(0) 推荐(0) 编辑
摘要: #include int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow){ MessageBox(NULL, TEXT("Hello World"), TEXT... 阅读全文
posted @ 2013-03-13 23:29 N3verL4nd 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 给学计算机的人的肺腑之言 极端的社会舆论每每看到大学生就业报告里提到计算机系学生失业人数最多时,我就想,什么原因导致了这种现象的发生,在中国软件还处于比较初级的阶段时,市场对软件人才的需求应该每年在大幅的递增,可是大学里培养出来的计算机科班人才质量却每况愈下,甚至还不如一个软件培训机构两三个... 阅读全文
posted @ 2013-03-11 21:05 N3verL4nd 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;int main(){ int *p = new int[10]; for(int i = 0; i using namespace std;int main(){ int *p = new int[10](); for(int i = 0... 阅读全文
posted @ 2013-03-09 16:11 N3verL4nd 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;typedef char ElemType;#define ERROR -1#define OK 1typedef struct Node{ ElemType data; struct Node *ne... 阅读全文
posted @ 2013-03-07 23:38 N3verL4nd 阅读(144) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;void find(char array[], char search, char *pa){ int i; for(i = 0; *(array + i) != '\0'; i++) { if... 阅读全文
posted @ 2013-03-07 16:00 N3verL4nd 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 1、下载Lua源码 http://www.lua.org/download.html 最新版的5.2.1 a 下载后解压到一个目录下,这里假设解压到D:\lua-5.2.1 2、在VS2010中新建一个静态库项目,项目命名为CompileLua a 选择新建 Win32 console pro... 阅读全文
posted @ 2013-03-06 21:35 N3verL4nd 阅读(175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 70 71 72 73 74 75 76 77 78 ··· 95 下一页