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