741 views
0 votes
0 votes

Can anyone please explain the functioning of the statement (specified in bold) ?

#include <stdio.h>
void main(){
int p = -8;
int i = (p++, ++p);
printf("%d\n", i);
}

Please log in or register to answer this question.

Related questions

6 votes
6 votes
1 answer
3
5 votes
5 votes
1 answer
4