#include <stdio.h>
int main()
{
char c; // 문자 1개 저장 가능.
char str[10]; // 문자 10개 저장 가능. (배열)
return 0;
}
#include <stdio.h> // stdio.h 라이브러리 호출
int main()
{
int n;
scanf("%d", &n); // scanf 함수를 사용하여 정수형 변수 n에 값을 입력 받음.
printf("%d", n); // printf 함수를 사용하여 입력 받은 n 값 출력.
return 0;
}
#include <stdio.h>
int main()
{
printf("Hello World!"); // Hello World! 문자열 출력.
return 0;
}
#include <stdio.h>
int main()
{
int n = 1;
printf("One is %d", n); // %d = int 자료형 형식지정자, n = 형식지정자 대상 변수
return 0;
}
💡 배열의 변수를 지정할 때는 & 기호를 사용하면 안됨.
#include <stdio.h>
int main()
{
int n;
scanf("%d", &n); // 변수 n에 정수 값을 입력 받음.
return 0;
}
#include <stdio.h> // printf, scanf 함수 사용을 위한 stdio.h 라이브러리 호출.
int main()
{
char name[10]; // 10개의 문자를 저장할 수 있는 배열 선언.
printf("What is your name? : "); // What is your name? 출력.
scanf("%s", name); // name 배열에 입력 받은 값 저장.
printf("Hello %s!", name); // Hello [배열 name의 값]! 출력.
return 0;
}
#include <stdio.h> // printf, scanf 함수 사용을 위한 stdio.h 라이브러리 호출.
int main()
{
char str1[10] = "Hello";
return 0;
}
- 배열 str1 에는 Hello 문자열과 맨 뒤에 숨어있는 \0(null) 문자 1개가 저장되어 총 6개의 문자 값이 저장됨.
#include <stdio.h>
#define PI 3.141592f // 전처리기에서 기호적 상수 PI 선언.
int main()
{
printf("%f", PI); // PI 값 출력. (3.141592)
return 0;
}
#include <stdio.h>
int main()
{
const float PI = 3.141592f; // const를 사용하여 기호적 상수 PI 선언.
printf("%f", PI); // PI 값 출력. (3.141592)
return 0;
}
🚩 출처 및 참고자료 : 홍정모의 따라하며 배우는 C 언어 (따배씨)