TA的每日心情 | 开心 2014-12-22 12:46 |
---|
签到天数: 1 天 连续签到: 1 天 [LV.1]测试小兵
|
Action()
{
char *file="e://text.txt";
char a[20]="dsdssdsd";
long aa;
if((aa=fopen(file,"w+"))==NULL)
{
lr_output_message("not open %s",file);
return -1;
}
fprintf(file,"%s",a);
return 0;
}
Action.c(13): Error: C interpreter run time error: Action.c (13): Error -- memory violation : Exception ACCESS_VIOLATION received.
Action.c(13): Notify: CCI trace: Action.c(13): fprintf(0x009f0197 "e://text.txt", 0x009f0185 "%s", 0x00c80024 "dsdssdsd")
.
Action.c(13): Notify: CCI trace: Compiled_code(0): Action()
. |
|