摘要: 今天有人问到二维数组传参的事情,自己尝试着写了下。int main()//must return int{ int table[3][4]={1,2,3,4,2,3,4,5,3,4,5,6}; PrintTable((int **)table,3,4); //RowSum( table,3); RowSum2( (int **)table,3,4); PrintTable((int **)table,3,4);}函数声明为void RowSum( int array[][4], int nrow);void RowSum2(int **array,unsigned... 阅读全文
posted @ 2012-03-06 20:49 westfly 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 在上看到Sublime Text 2 ,恰好被Vim折腾得不行了。于是换下口味。该软件还在发展当中,是共享软件,但是作者很厚道,更TC一样并没有功能上的删减。该软件暂时不支持中文,但有强大的Package扩展功能。安装 Package管理插件http://wbond.net/sublime_packages/package_control/installationClick the Preferences > Browse Packages… menu entryBrowse up a folder and then into the Installed Packages folderD 阅读全文
posted @ 2012-03-06 20:11 westfly 阅读(592) 评论(0) 推荐(0) 编辑