기본설정 printf("다시만나요\n");을 빼고


컴파일및 실행과정


by 날라차숑 2014. 3. 4. 16:40

1.linux key

(case-sensitive)


./executable file : excution

cd /  : move upper directory

cd .. : move uppermost directory

ls : show us a list

pwd : show us a current directory(Print Working Directory)

mkdir : Make a directory

rmdir : remove a directory

cp a.c b.c : copy a.c to b.c(relative path)

cp a.c ./../../../../home/wotjdaka/a.c(absolute path)

cp a.c /mnt/hgfs/One/wotjdaka/a.c : copy a.c to b.c(absolute path)

cp a.c /home/wotjdaka/a.c(absolute path)

위와같이 cp를 mv로 바꾸면 이동 또는 변경

/mnt/hgfs/One/wotjdaka디렉토리에서 cp /home/wotjdaka/f.c .을치면 전자의 디렉토리로 카피 해옴 

rm -rf [디렉토리] : 파일이 있는 디렉토리 강제로 지우기


//indent=들여쓰다//

vi editor

vi .vimrc setting


리눅스 컴파일:gcc -o main main.c  // run  ./main  //

-o(출력하라) main이란 이름으로 main.c를

윈도우 컴파일 cl main.c =>compiled to main.exe

   
2.preparation of programming

#include <stdio.h>


int main()

{

return 0;

}


'C언어' 카테고리의 다른 글

20140304(2) VC 준비 (path설정)  (0) 2014.03.04
20140304 VI편집기  (0) 2014.03.04
20140227 마인드스톰 라인트레이서  (0) 2014.02.27
20140224 디지털 논리회로  (0) 2014.02.24
20140221 버추어박스설치  (0) 2014.02.21
by 날라차숑 2014. 3. 3. 12:07


최대속도 40

최저속도 7

라이트센서 34

201

'C언어' 카테고리의 다른 글

20140304 VI편집기  (0) 2014.03.04
20140303 리눅스 명령어 및 프로그래밍 준비  (0) 2014.03.03
20140224 디지털 논리회로  (0) 2014.02.24
20140221 버추어박스설치  (0) 2014.02.21
20140220 o/s의 역사  (0) 2014.02.20
by 날라차숑 2014. 2. 27. 17:30