#include <stdio.h>

int main(int argc, char *argv[]) {
    int a = 1, b, c, d;
    d= (b =a++, c=b+2);    // 괄호 안의 내용은 오른쪽의 내용을 선택하여 d변수에 3이 저장
    printf("a=%d, b=%d, c=%d, d=%d\n", a, b, c, d);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: