#include <stdio.h> void main() { int n = 15; double m = n++ + ++n + n--; printf("%d", n); }
16
Previous Question Next Question
Your comments will be displayed only after manual approval.