#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