fork download
#include <iostream>
using namespace std;

int main() {
	
	int aa[3] = {1, 2, 3};
	void *b = aa;
	
	cout << aa << endl;
	cout << aa+1 << endl;
	
	cout << b << endl;
	b++;
	cout << b << endl;
	
	int* c = (int*)b;
	cout << *c << endl;
	// your code goes here
	return 0;
}
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
0x7ffc1fe7a860
0x7ffc1fe7a864
0x7ffc1fe7a860
0x7ffc1fe7a861
33554432