본문 바로가기
IT/프로그래밍

C언어 코딩 도장 연습문제 10.6

by nutrient 2020. 12. 4.
728x90
728x170

C언어 코딩 도장 연습문제 10.6

다음 소스 코드를 완성하여 Hello, world! 8 4.900000e-302가 출력되게 만드세요.

#include <stdio.h>

int main()
{
    printf("H%cllo, %s %d %Le\n", _________________________________);

    return 0;
}

 

실행 결과
Hello, world! 8 4.900000e-302


정답
'e', "world!", 8, 4.9e-302L

 

728x90
그리드형

댓글