Published Book on Amazon
All of IOT Starting with the Latest Raspberry Pi from Beginner to Advanced – Volume 1 | |
All of IOT Starting with the Latest Raspberry Pi from Beginner to Advanced – Volume 2 |
출판된 한글판 도서
최신 라즈베리파이(Raspberry Pi)로 시작하는 사물인터넷(IOT)의 모든 것 – 초보에서 고급까지 (상) | |
최신 라즈베리파이(Raspberry Pi)로 시작하는 사물인터넷(IOT)의 모든 것 – 초보에서 고급까지 (하) |
Original Book Contents
23.6.2 프로그램 작성하기
전형적인 C 프로그램은 통상 다음과 같은 형태를 가지고 있다. 프로그램의 첫 행에서 "header file"을 지정한다. 그리고 "main" 함수가 프로그램 본문에 해당하는 것이다.
#include <stdio.h>
int main(void) {
} |
여기서는 숫자를 입력 받아서 계산을 한 다음, 그 결과를 화면에 보여주는 간단한 프로그램을 사례로 사용할 것이다. 아래와 같은 간단한 프로그램 code를 작성하여 사용할 것이다.
#include <stdio.h>
int main(void) { int i = 0; printf("Hello. input your number \n"); fscanf(stdin,"%d", &i); printf("The calculation result is as follows \n"); fprintf(stdout, "%d\n", i * 10);
return 0; } |