What will be the output of the following C++ code?


    #include stdio.h 
#includeiostream
using namespace std;
int main()
{
int a = 21;
int c ;
c = a++;
cout c;
return 0;
}

Posted on by