
读书笔记
月球人
自恋理想主义笨笨90后向往独自漂泊的月球人...
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
我常上的一些网站
关于下载资料的:IT168:http://wenku.it168.com/新浪共享资料:点击打开链接百度文库:点击打开链接51cto:点击打开链接优快云:点击打开链接关于论坛社区和博客的:优快云:点击打开链接开源社区:点击打开链接博客园:点击打开链接chinaUNIX:点击打开链接常去的一些技术官方网站:微软MSDN资源库:点原创 2013-04-29 09:37:02 · 731 阅读 · 0 评论 -
sizeof&指针
// sizeof.cpp : Defines the entry point for the console application.//#include "StdAfx.h"#include "iostream.h"int main(int argc, char* argv[]){// int **a[3][4];// cout// return 0; //原创 2013-06-10 21:12:13 · 1062 阅读 · 0 评论 -
引用&
// 引用.cpp : Defines the entry point for the console application.//#include "StdAfx.h"#include "iostream.h"int main(int argc, char* argv[]){// printf("Hello World!\n"); int a[3] ={1,2,0};原创 2013-06-10 21:44:39 · 1190 阅读 · 0 评论 -
赋值&初始化
// value.cpp : Defines the entry point for the console application.//#include "stdafx.h"int main(int argc, char* argv[]){// int i = 8;// int p;// p = i++;// printf("\ni = %d,%d,%d\n",i原创 2013-06-14 00:30:17 · 1288 阅读 · 0 评论