I have code:
#include <bits/stdc++.h>
int main()
{
int b = 5;
int * a = &b;
*a++;
std::cout << *a;
}
Why pre-incremental works well, but post not working?
I have code:
#include <bits/stdc++.h>
int main()
{
int b = 5;
int * a = &b;
*a++;
std::cout << *a;
}
Why pre-incremental works well, but post not working?