#include <stdio.h>

int main(){
    int a=1, b=2, c=3, d=4;
    if((a==b)&&(c++ ==d)) c++; 
    /* &&의 문제는 단락 회로 평가라고 하는데 
    왼쪽의 조건이 만족하지 않으면 
    오른쪽 조건은 실행하지 않고 종료된다.*/
    printf("%d", c);
}

Embed on website

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