2.2. 내용 ¶
지난 시간 review
1강. C언어 문지방 넘기
- Hello, World! 프로그램 작성
○ 손코딩
- 기본적인 C 프로그램 구조
- 프로그래밍 원리
○ 컴퓨터 프로그램의 동작 원리와 프로그래밍 언어의 존재 이유를 알아봅시다
- High-level language라고?
- 주석을 배워봅시다
- 문자열 리터럴 사용법
○ 쌍따옴표의 의미
- 변수와 상수
- 기초 연산자
- Hello, World! 프로그램 작성하기
- 여러 가지 변수를 선언하고 연산하기
- printf 연습하기
3.2. 김남효 ¶
#include <stdio.h>
int main()
{
#include <stdio.h>
{
int a,b,c;
a = 10;
b = 16;
c = 99;
printf("%d %x %c \n",a,b,c);
system("pause");
return 0;
}a = 10;
b = 16;
c = 99;
printf("%d %x %c \n",a,b,c);
system("pause");
return 0;
#include <stdio.h>
int main()
{
{
int a,b,c;
a=65;
b = 25;
c = 32;
printf("%c %c %c\n",a,a+b,a+b+c);
system("pause");
return 0;
}a=65;
b = 25;
c = 32;
printf("%c %c %c\n",a,a+b,a+b+c);
system("pause");
return 0;
3.3. 이길쌍 ¶
#include <stdio.h>
int main()
{
#include <stdio.h>
{
int a,b,c;
a = 10;
b = 16;
c = 99;
printf("%d %x %c \n",a,b,c);
system("pause");
return 0;
}a = 10;
b = 16;
c = 99;
printf("%d %x %c \n",a,b,c);
system("pause");
return 0;
#include <stdio.h>
int main()
{
{
int a,b,c;
a=65;
b = 25;
c = 32;
printf("%c %c %c\n",a,a+b,a+b+c);
system("pause");
return 0;
}a=65;
b = 25;
c = 32;
printf("%c %c %c\n",a,a+b,a+b+c);
system("pause");
return 0;