怎样将下面的提示字符串换成系统的提示呢?
try{
int * a = 0;*a = 0;
}catch(...){
printf("异常发生:提示字符串");
}//这一行是VC的输出窗口的结果
First-chance exception in asdf.exe: 0xC0000005: Access Violation.
try{
int a = 0;a /= 0;

}catch(...){
printf("异常发生:提示字符串");
}First-chance exception in asdf.exe: 0xC0000094: Integer Divide by Zero.