0 votes
0 answers
2
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);}