• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • YouClaw
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






silencExplode

人生当如流水,可以干,而不可以浊!
 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

04 2011 档案

 
好东西要随时记录下来
摘要:1:i++;(来自http://www.cnblogs.com/slave_wc/archive/2011/03/21/1990730.html)What will be the output of the following C code ? #include <stdio.h>int main() { int b = 3; int arr[] = {6, 7, 8, 9, 10}; int *ptr = arr; *(ptr++) += 123; printf("%d, %d\n", *ptr, *(++ptr));}/*修改中,C语言对函数参数压栈顺序未做 阅读全文
posted @ 2011-04-18 22:12 silencExplode 阅读(172) 评论(0) 推荐(0)