Find the output of the following program.
#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));}
#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));}Find the output of the following program.
#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} Correct Answer Error
L value is required for this expression (x++) which is illegal.
মোঃ আরিফুল ইসলাম
Feb 20, 2025