찾다

 >  Q&A  >  본문

기능과 구조

#include <stdio.h>

struct n

{

int x;

char c;

};

void func(struct n b){

b.x=20,b.c='y ' ;

}

void main(){

struct n a={10,'x'};

func(a);

printf("%d,%c",a.x,a.c);

}

최종 결과가 왜 10,x인지 답변 부탁드립니다

仰望星空仰望星空1613일 전1189

모든 응답(0)나는 대답할 것이다

답장 없음
  • 취소회신하다