#include <iostream> using namespace std; int main() { int num = 15; int Res ; Res = num++; cout << Res; return 0; }
value of ‘num’ will be stored in Res and then only it will be incremented.
Previous Question Next Question
Your comments will be displayed only after manual approval.