Diff Between Pre-decrement and Post-decrement

#include<iostream.h>

void main()
{
int a;
cout<<"enter value a";
cin>>a;
cout<<a<<a--<<--a;
}

No comments:

Related Posts with Thumbnails