번개애비의 라이프스톼일
리눅스에서 c언어 컴파일하고 실행해보기 본문
자료구조(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
'IT' 카테고리의 다른 글
php 파일업로드 예제 (0) | 2016.09.14 |
---|---|
윈도우에서 IIS + PHP 설치하기 (0) | 2016.09.12 |
php로 accdb 가져오는 방법 (0) | 2016.08.24 |
특정 메뉴 클릭시 스크롤을 자동으로 내리는 방법 (html/javascript) (0) | 2016.06.28 |
안드로이드에서 플래시재생이 안될때 (0) | 2016.06.21 |
Comments