xiaohuznhy 发表于 2021-10-9 22:15:32

指针 运行不了

为什么在指针这一块儿,代码编写的没有问题,一运行总是会出现one or more multiply defined symbols found
头疼 ,根本没办法运行,而且 检查代码没有问题

大马强 发表于 2021-10-9 22:16:06

发代码

xiaohuznhy 发表于 2021-10-9 22:17:16

大马强 发表于 2021-10-9 22:16
发代码

#include <stdio.h>
int main ()
{
        char str[]="I love FishC.com";
        char *target=str;
        int count=0;
        while (*target++!='\0')
        {
                count++;
        }
        printf("总共有%d个字符!\n",count);
        return 0;

xiaohuznhy 发表于 2021-10-9 22:18:10

xiaohuznhy 发表于 2021-10-9 22:17
#include
int main ()
{


就是上课跟着小甲鱼一起敲得非常简单的,应该没有重复定义吧

xiaohuznhy 发表于 2021-10-9 22:29:27

大马强 发表于 2021-10-9 22:16
发代码

#include <stdio.h>
int main ()
{
        char str[]="I love FishC.com";
        char *target=str;
        int count=0;
        while (*target++!='\0')
        {
                count++;
        }
        printf("总共有%d个字符!\n",count);
        return 0;

jackz007 发表于 2021-10-9 22:33:14

       我这里编译、运行没有任何问题!
D:\00.Excise\C>g++ -o x x.c

D:\00.Excise\C>x
总共有16个字符!

D:\00.Excise\C>

xiaohuznhy 发表于 2021-10-9 22:34:41

jackz007 发表于 2021-10-9 22:33
我这里编译、运行没有任何问题!

那意思是我的VC有问题,总之一旦定义指针就有问题。头大、、

jackz007 发表于 2021-10-9 22:38:29

xiaohuznhy 发表于 2021-10-9 22:34
那意思是我的VC有问题,总之一旦定义指针就有问题。头大、、

      VC6.0
D:\00.Excise\C>cl x.c
Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 12.00.8804 for 80x86
Copyright (C) Microsoft Corp 1984-1998. All rights reserved.

x.c
Microsoft (R) Incremental Linker Version 6.00.8447
Copyright (C) Microsoft Corp 1992-1998. All rights reserved.

/out:x.exe
x.obj

D:\00.Excise\C>x
总共有16个字符!

D:\00.Excise\C>
    VC2019
D:\00.Excise\C>cl x.c
用于 x86 的 Microsoft (R) C/C++ 优化编译器 19.28.29334 版
版权所有(C) Microsoft Corporation。保留所有权利。

x.c
Microsoft (R) Incremental Linker Version 14.28.29334.0
Copyright (C) Microsoft Corporation.All rights reserved.

/out:x.exe
x.obj

D:\00.Excise\C>x
总共有16个字符!

D:\00.Excise\C>

xiaohuznhy 发表于 2021-10-9 22:44:21

jackz007 发表于 2021-10-9 22:38
VC6.0

    VC2019

看不懂啊哥哥
啥意思?就是在你的电脑上都可以运行?是这个意思不

jackz007 发表于 2021-10-9 22:48:44

xiaohuznhy 发表于 2021-10-9 22:44
看不懂啊哥哥
啥意思?就是在你的电脑上都可以运行?是这个意思不

         是的,我想说的是,这个代码无论使用什么编译器都是可以的!

xiaohuznhy 发表于 2021-10-9 22:59:54

jackz007 发表于 2021-10-9 22:48
是的,我想说的是,这个代码无论使用什么编译器都是可以的!

好的,谢谢!!!1
页: [1]
查看完整版本: 指针 运行不了