当前位置: 代码迷 >> C语言 >> [讨论]有趣的问题
  详细解决方案

[讨论]有趣的问题

热度:103   发布时间:2006-07-17 20:57:54.0
[讨论]有趣的问题

#include<stdio.h>
#include<string.h>

int main()
{
int x = 10;
char c[10];
printf("%d\n", strlen( c ) );
strcpy( c, "1234567890987" );
printf("%d\n", x);

return 0;
}

搜索更多相关的解决方案: return  include  

----------------解决方案--------------------------------------------------------
  相关解决方案