Download presentation
Presentation is loading. Please wait.
1
C
2
설치 Dev C++ Google 검색 : Dev C++ Compiler 개발사 홈페이지
3
Programming을 하게 되면
4
Programming을 하게 되면
5
Programming을 하게 되면
6
Programming을 하게 되면
7
Programming을 하게 되면
8
Programming을 하게 되면
9
Programming을 하게 되면
10
Programming을 하게 되면
11
C란 무엇인가? 규칙 & 규약 Input & Output ex) 5=2+3 ex) “자랑이다”=“자랑”+”이다”
“어떠한 입력이 있을 때 어떻게 움직이겠다”를 구현하는 것 Input & Output 내가 어떤 입력을 넣었을 때 어떤 출력이 나오는지 만 알고 맞춰주면 Program을 누구나 짤 수 있다.
12
Hello~ World
13
Hello~ World #include<stdio.h> int main( ){ printf(“Hello~ World\n”); return 0; } 저장 후 Compile & Run
14
int main() 시작 지점 <Output type> function ([input [, input]])
#include<stdio.h> int fn1 (char test){…} int fn2 (int test1, char test2){…} char fn3 (char test){…} int main ( ){…} <- 프로그램의 시작 부분
15
#include <stdio.h>
printf를 미리 정의 해 놓은 헤더파일 헤더 파일명이 기억이 안 날 때 에서 검색하세요.
16
printf(“Hello~ World\n”);
화면 출력 Output ?
17
printf(“Hello~ World\n”);
printf : print format printf 를 이용하여 출력 형식을 지정할 수 있다. 주로 사용하는 특수 문자. \n, \t, %d, %f, %s, %c, \\, \” 때때로 %3d, %7.2f 등이 쓰일 때도 있다.
18
printf(“Hello~ World\n”);
19
return 0; main 함수의 output을 돌려주는 명령 return <Output>;
<Output type> function ([input [, input]]) int main ( ) Ex) char fn1 (void){ … return ‘a’; }
20
함수 사용시 꼭 지켜야 되는 규칙들 입력: int char float double void
Similar presentations