++,--操作符使用

#include <stdio.h>

int main()
{   
    int i = 0;
   // int j = ++i+++i+++i;
    
    int a = 1;
    int b = 2;
    int c = a+++b;
    
    int* p = &a;
    printf("c=%d\n",c);
    b = b;
      
    return 0;
}

 

posted @ 2016-12-08 18:11  王小波私人定制  阅读(138)  评论(0编辑  收藏  举报
DON'T FORGET TO HAVE FUN