#include <stdio.h> void main() { int p = 5; int q = ++p + p++ + --p; printf("Value of q is %d", q); }
Value of q is 19
Previous Question Next Question
Your comments will be displayed only after manual approval.