#include <iostream> using namespace std; int main() { int *p; char c = 'x'; p = (int *)&c; *p = 100; printf("%d", *p); return 0; }