阿爾卡特的一個筆試題
// ATest.cpp : Defines the entry point for the console application.
//參數(shù)傳遞問題
- include "stdafx.h"
- include
using namespace std;
void fun(int a,int*b,int &c,int* &d)
{
a++;
(*b)++;
b = new int(10);
cout<<"aaaa "<
cout<<"bbbb "<<*b< c++; d++; d = new int(5); cout<<"dddd "< cout<<"dddd2 "<<*d< } int main(int argc, char* argv[]) { int a=2,b=3,c=4,d=5; int* p = &d; fun(a,&b,c,p); cout<
cout<
cout< cout< cout<<*p< // printf("Hello World!\n"); return 0; 【阿爾卡特的一個筆試題】相關(guān)文章: 給學(xué)弟學(xué)妹的求職筆面試總結(jié)03-18 2017筆試各題型答題技巧02-11 一個關(guān)于夢想的故事02-14 一個有趣的求職經(jīng)歷03-06 有關(guān)面試的筆試題03-19 2017筆試必備:進出口銀行常識匯總04-01 一個面霸的求職心經(jīng)07-04 一個校園IT男的求職故事07-04 一個職場新人的求職經(jīng)歷06-27 一個留美博士的求職故事03-29