| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 518 人关注过本帖, 1 人收藏
标题:关于指针和数组的问题 谢谢
取消只看楼主 加入收藏
刘暮哲
Rank: 2
来 自:江苏
等 级:论坛游民
帖 子:75
专家分:83
注 册:2009-9-25
结帖率:69.23%
收藏(1)
已结贴  问题点数:5 回复次数:1 
关于指针和数组的问题 谢谢
#include<stdio.h>
#include<string.h>
void main()
{
    char *s1,*s2,*s3;
    int i,j,n,m,x;
    printf("enter the string s1 and s2\n");
    scanf("%s %s",s1,s2);
    n=strlen(s1);
    m=strlen(s2);
    x=strcmp(s1,s2);
    if(x!=0)
    {
        printf("the two string\n");
        strcat(s1,s2);
    }
    else
        printf("the two string are not equal\n");
    strcpy(s3,s1);
    i=strlen(s3);
    printf("%s\n",s3);
    printf("the length of the s3 is:%3d\n",i);
    printf("%d %d\n",n,m);
}
这样不能运行  但是编译没有问题
我改成下面这样既可以运行  而且结果是正确的  请问是什么原因啊  指针和数组不是在某种意义上时一样的吗?
#include<stdio.h>
#include<string.h>
void main()
{
    char s1[10],s2[10],s3[30];
    int i,j,n,m,x;
    printf("enter the string s1 and s2\n");
    scanf("%s %s",s1,s2);
    n=strlen(s1);
    m=strlen(s2);
    x=strcmp(s1,s2);
    if(x!=0)
    {
        printf("the two string\n");
        strcat(s1,s2);
    }
    else
        printf("the two string are not equal\n");
    strcpy(s3,s1);
    i=strlen(s3);
    printf("%s\n",s3);
    printf("the length of the s3 is:%3d\n",i);
    printf("%d %d\n",n,m);
}
搜索更多相关主题的帖子: 指针 
2009-10-16 10:10
刘暮哲
Rank: 2
来 自:江苏
等 级:论坛游民
帖 子:75
专家分:83
注 册:2009-9-25
收藏
得分:0 
那我这个问题  我就必须用指针来写  请问怎么写

做最好的自己
2009-10-22 11:15
快速回复:关于指针和数组的问题 谢谢
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.027233 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved