jeudi 25 août 2022

Can Anyone explain the output to this piece of code using Late binding [duplicate]

#include <stdio.h>

int main() {
    int i=5;
    
    int j= ++i * i++ * ++i * i++;
    printf("%d ",j); // Output is 2688

    return 0;
}

I am unable to understand how late binding is working in this case. can anyone help me by explaining this?

Aucun commentaire:

Enregistrer un commentaire