C语言:++运算

#include <stdio.h>
main()
{    
    int a,b=2;
    a=(++b)+(b++);
    printf("%d,%d",a,b);
 }

 

posted @ 2022-10-24 15:33  myrj  阅读(202)  评论(0编辑  收藏  举报