第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

C語言指針函數(shù)錯(cuò)誤?

C語言指針函數(shù)錯(cuò)誤?

三國(guó)紛爭(zhēng) 2019-02-07 11:07:51
#include<stdio.h>void main(){ int a,b;a=5,b=10;printf("before swap a=%d,b=%d\n",a,b);swap(&a,&b);printf("after swap a=%d,b=%d\n",a,b);}swap( px, py){int * px,* py;int temp;temp = * px;* px = * py;* py = temp;printf("in swap x=%d,y=%d\n",* px ,* py);}運(yùn)行結(jié)果時(shí)候zhizhengmain.cppF:\C語言\20130702\zhizhengmain.cpp(7) : error C2065: 'swap' : undeclared identifierF:\C語言\20130702\zhizhengmain.cpp(10) : error C2065: 'px' : undeclared identifierF:\C語言\20130702\zhizhengmain.cpp(10) : error C2065: 'py' : undeclared identifierF:\C語言\20130702\zhizhengmain.cpp(11) : error C2448: '<Unknown>' : function-style initializer appears to be a function definition執(zhí)行 cl.exe 時(shí)出錯(cuò).zhizhengmain.obj - 1 error(s), 0 warning(s)為什么??
查看完整描述

3 回答

?
浮云間

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超4個(gè)贊

undeclared identifier的意思你就可以理解為沒有定義。

只需要改一下就可以了。

123456789101112131415161718#include<stdio.h>void swap(int * px,int * py);//提前申明函數(shù)void main()    int a,b;    a=5,b=10;    printf("before swap a=%d,b=%d\n",a,b);    swap(&a,&b);    printf("after swap a=%d,b=%d\n",a,b);}viod swap(int * px,int * py){    int temp;    temp = * px;    * px = * py;    * py = temp;    printf("in swap x=%d,y=%d\n",* px ,* py);}


查看完整回答
反對(duì) 回復(fù) 2019-03-22
?
繁華開滿天機(jī)

TA貢獻(xiàn)1816條經(jīng)驗(yàn) 獲得超4個(gè)贊

函數(shù)swap要有類型,然后還應(yīng)該在main函數(shù)前聲明。。另外main函數(shù)里的swap( px, py)這里px py沒有定義

查看完整回答
反對(duì) 回復(fù) 2019-03-22
  • 3 回答
  • 0 關(guān)注
  • 1089 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)