gcc ( GNU C Compiler )
c 컴파일러 설치
# yum install gcc
c++ 컴파일러 설치
# yum install gcc-c++
컴파일러의 버전 확인
# gcc --version
c 소스 파일 작성(test.c)
# gedit test.c
#include
void main(){
printf("hello\n");
}
c 소스 컴파일
# gcc test.c
컴파일 결과 확인
# ls -la
실행
# ./a.out
컴파일 후 실행 파일의 이름 지정 : -o 실행파일이름
-o 옵션이 없으면 a.out으로 설정됨
# gcc -o test test.c
# ./test
디렉토리 생성
mkdir(MaKe DIRectory, 디렉토리 생성)
# mkdir source
source 디렉토리로 이동
cd(Change Directory) 디렉토리 변경
# cd source
gedit 실행 (c 언어 테스트)
gedit ex01.c
x-window
데스크탑 애플리케이션
gnome(그놈)
KDE
한글 설치
p.320
yum : 리눅스의 설치 프로그램
yum install 설치
yum update 업데이트
yum remove 삭제
yum grouplist 프로그램 그룹
# yum grouplist | grep KDE
KDE 설치
-y : 설치과정에서 질문=>y 자동입력
# yum -y groupinstall "KDE PLasma Workspaces"
ex01.c
#include
void main(){
double pi=3.141592;
int radius=0;
printf("반지름을 입력하세요:");
scanf("%d", &radius);
double result=pi*radius*radius;
printf("반지름:%d\n", radius);
printf("넓이: %7.2f\n", result);
}
ex02.c
#include
void main(){
double width=0;
double height=0;
printf("가로길이:");
scanf("%lf", &width);
printf("세로길이:");
scanf("%lf", &height);
double area=width*height;
printf("가로: %7.2f\n", width);
printf("세로: %7.2f\n", height);
printf("넓이: %7.2f\n", area);
}
댓글 ( 4)
댓글 남기기