这样运行有错误吗?不可能呀
#include<stdio.h>#include<string.h>int main(){ char s[] = "today", *p; strcpy(p, s); printf("%s\n", p); return 0;}
#include "Stdio.h"#include "string.h"#include "stdlib.h"#include "Conio.h"int main(){ char s[] = "today", *p; p=(char *)malloc(sizeof(char)*(strlen(s)+1)); if(p==NULL) exit(EXIT_FAILURE); strcpy(p, s); printf("%s\n", p); free(p); getch(); return 0;}没有为指针p分配空间.此时p是野指针。
*p指到哪里了啊??是不是没有赋值啊!!
突然想问下~~~什么样的叫野指针?我现在就是不是很明白怎样的叫野指针?为指针p分配空间是一个什么样的过程?