#include <stdio.h>

int main() {
    int a =1, b =2, c= 3, d=4;
    
    if((a==b)&&(c++==d)) c++; //c:3
    //if((a==b)||(c++==d)) c++; //c:4
    //if((a==b)||(++c==d)) c++; //c:5
    printf("%d", c);
    return 0;
}

Embed on website

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