#include <stdio.h>

int main() {
    int a, b, c, r;
    a=4;
    b=2;
    c=3;

    r= a++ - ++b * (c<<2);     // a=4 - ( b=3, c=1100(12)를 곱한 값 36) a와 계산한 최종값= -32
    printf("%d\n", r);
}

Embed on website

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