![]() |
#2
pywepe2009-10-25 20:26
|

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