47.5 연습문제: 문자 매개변수 사용하기

다음 소스 코드를 완성하여 "Type X"가 출력되게 만드세요.

practice_function_parameter.c

#include <stdio.h>

void printType(char type)
{
    printf("Type %c\n", type);
}

int main()
{
    _____________________
    
    return 0;
}

실행 결과

Type X

정답

printType('X');

해설

void printType(char type)과 같이 함수 printType의 매개변수는 char형이고, printf에서 "Type"과 매개변수를 조합하여 "Type X"를 출력합니다. 따라서 printType을 호출할 때 문자 'X'를 넣어주면 됩니다.