#include <iostream>

int main() {
	int *p= reinterpret_cast<int*>(const_cast<char*>("hello there")); 
	return 0;
}