下列说法正确的是(    &nbs...
发布于 2022-03-03 14:13:22
下列说法正确的是( )
#include "stdio.h"
#include "string.h"
void fun( char *s)
{
char t[7]
s=t
strcpy(s, "example")
}
int main()
{
char *s
fun(s)
printf("%s",s)
return 0
}
#include "stdio.h"
#include "string.h"
void fun( char *s)
{
char t[7]
s=t
strcpy(s, "example")
}
int main()
{
char *s
fun(s)
printf("%s",s)
return 0
}
登录后免费查看答案
关注者
0
被浏览
10