首页 > 问答 > 正文
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#
include
<stdio.h>
#include <string.h>
<string.h>
int main(int argc, char* argv[])
{
char dst[] = "hello";
char dst[] =
"hello"
;
char *src = "woh";
char *src =
"woh"
strcpy(dst, src);
return 0;
return
0;
}
eclipse调试如何进入strcpy库函数 , stepinto没进入。
天蓬老师2017-04-21 10:59:25
库函数都是编译好的,eclipse没有源码,stepinto当然进不去了。
想看源码的话,可以自己去下载个eglibc的源码来瞧瞧。