C语言程序结果:自增 &应用

//下面程序的运行结果为_______________。
#include"stdio.h"
main( )
{ 
    int a=3,b=5,c=8;
    if(a++<3 && c--!=0) b=b+1;
    printf("a=%d,b=%d,c=%d\n",a,b,c);

}

a=4,b=5,c=8

posted @ 2023-02-08 19:24  myrj  阅读(23)  评论(0编辑  收藏  举报