如何使用调试器gdb进行代码调试,具体的调试方法有哪些
1个回答
2016-11-25 · 知道合伙人软件行家
关注
展开全部
源文件为:
[cpp] view plain copy print?
/* filename: TestStrcpy.c
* description: Used to test the function "Strcpy"
* author: Howard
* date: 2013-11-22
* version: v1.0
*/
#ifndef DE
#define DE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#endif
int main(void)
{
char * p;
char arr[6] = "hello";
p = arr;
strcpy(p,arr);
printf("%s\n",arr);
printf("%s\n",p);
return 0;
}
[cpp] view plain copy print?
/* filename: TestStrcpy.c
* description: Used to test the function "Strcpy"
* author: Howard
* date: 2013-11-22
* version: v1.0
*/
#ifndef DE
#define DE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#endif
int main(void)
{
char * p;
char arr[6] = "hello";
p = arr;
strcpy(p,arr);
printf("%s\n",arr);
printf("%s\n",p);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询