번개애비의 라이프스톼일

리눅스에서 c언어 컴파일하고 실행해보기 본문

IT

리눅스에서 c언어 컴파일하고 실행해보기

번개애비 2016. 9. 7. 10:09

자료구조(C++ in Fedora 1주차)


%vi hello.c

// 소스시작

#include <stdio.h>

main(){

printf("Hello, World. \n");

}

// 소스끝

%:wq   //저장하기

%gcc ./hello.c   //hello.c 를 컴파일

%gcc ./hello.c -o hello     //hello.c파일을 hello 파일로 출력되게 출력




실습 .4

1년은 12개월이다. 키보드로부터 "개월 수"(integer)를 읽어서, 읽은 개월 수를 시간으로 환산하면 몇 시간인지, 분으로 환산하면 몇 분인지, 초로 환산하면 몇 초인지를 출력하는 프로그램을 작성하라 단, 1달은 30일로 계산한다.


%vi 4.c

// 소스시작

#include <stdio.h>

main()

{

        int  mon, day, hour, min, sec;

        printf("개월 수를 입력하세요\n");

        scanf("%d", &mon);

        day = mon*30;

        hour = day*24;

        min = hour * 60;

        sec = min * 60;

        printf("%d 개월은 %d 일 %d 시간 %d 분 %d 초 입니다\n", mon, day, hour, min, sec);

        return 0;

}

//소스 끝

%:wq

%gcc ./4.c -o 4



Comments