Comment on the behaviour of the following C code?
#include int main(){ int i = 2; i = i++ + i; printf("%d\n", i);}
#include int main(){ int i = 2; i = i++ + i; printf("%d\n", i);} Comment on the behaviour of the following C code?
#include <stdio.h>int main(){ int i = 2; i = i++ + i; printf("%d\n", i);} Correct Answer = operator is not a sequence point
মোঃ আরিফুল ইসলাম
Feb 20, 2025