U E D R , A S I H C RSS

새싹교실/2012/개차반



1.



2.

  • 결과 15~16/ 16~17
  • High-level programming skill보단 low-level HW low-level 는 독(...)
  • 료: 료: http://cau.ac.kr/~bongbong/c10/

2.1. 1(2012 - 03 - 27)


  • C를 low-level
    • C는 UNIX 개발로 만들 기 때문 OS가 되는 기 다고
    • 개념나 scanf &가 러가 keyword
    • binary digit를 개념 또
  • 드를 가며, Compile error, logical error, debug error 개념
    • 로그래밍 방법 부
  • C
  • variable 및 main function
  • #include가 무 header file
  • 과 compile -> link -> build 과

2.1.1. : 늘 배 .

  • c
    • High-Level 과 Low-Level 모두
      • High-Level 가까 다 (Human Friendly)
      • Low-Level 가까록 기다 (Machine Friendly)

  • 러 (complier)
    • High-Level 를 Low-Level 로 변


    • 되는 모든 되는 범
      • , 메모리, 로 구

    • bit
    • 로 나 릿를 나낸다
      • 1bit=0,1 / 2bit=00,01,10,11 / 3bit=000,001,010,011,100 ...


    • (Function) 들
      • 를 가

    • (variable)
    • int, float, char
      • int는 를 나내고 %d를
      • float는 %f를
      • char는 문를 나내고 %c를


  • 빼먹는 가!
    • int: integer type, 4 bytes
    • char: It used to express a character, but also used to express a integer. 1 byte
    • float: 4 byte, floating type number. Specification in IEEE 754-2008

    • function: input -> output

    • Main function
      • real part of program
      • It has start and end point of a program.
      • return 0; : 0 is a flag noticing OS that program is ended.

2.2. 2(2012 - 04 -05)

  • : Variables, Data Types, Standard I/O
    • Variables
      • identifier -> 다.
      • keyword
      • overflow
      • escape sequence
    • Data Type
      • Integer type: int(4 bytes), char(1 byte, be often used to express a character)
      • float type: float, double (double is more correct than float)
      • unsigned - MSB를 2배 를 더 많 다는 개념
      • Maximum, minimum value of int(경 )
    • Standard I/O
      • format specifications
      • printf, scanf
      • scanf & 까?
    • preprocessor(리기)
      • #define
    • automatic type conversion
    • Example Problem: Write a program that converts meter-type height into feet(integer),inch(float)-type height. Your program should get one float typed height value as an input and prints integer typed feet value and the rest of the height is represented as inch type. (1m=3.2808ft=39.37inch) (: 님 ppt)


2.2.1.


  • 2법, 명, 단논법 공부
  • 늘 못
  • 고1 대로 공부보기




  • (identifier)
    • 반드나 underscore (_) 로
    • 를 구

  • 드 (Keyword)
    • (identifier)

    • C 는 29 개 드가

  • (overflow)
    • 는 값보다 더 때 발
    • 2리되는 과 (?)
    • 것과 다른 값 겨나게 된다

  • (\, Escape sequence)
    • 기능 \ (back slash) 로
    • (\n), (\t), (\"), (\'), (\\) .



    • int : 4 byte. . 래로는 린다
    • char: 1 byte. 글 (character).
    • float, double: 4 byte, 8 byte. 므로
      • double float보다 더
      • float => -1.0E+38 ~ 1.0E+38 / double => -1.0E+308 ~ 1.0E+308
      • 1.0E?
    • unsigned ~ : 를 나
      • /를 구 되는 맨 리 0 는 데 두 배 많
  • int =4byte=32bit=2^32 리 0 나머되므로 -2^31 ~ 2^31-1 개
    • 2^31-1=???

  • Standard I/O
    • 기본 력 (Input) / 력 (Output)
    • <stdio.h>
    • printf ("내", argument);
    • scanf("format specifier(s)", &argument);
    • format specifications
      • 것 - %d (int), %f (float), %c (char)
    • scanf & : 는 값 &뒤 메모리 는 변 리는

  • 리기
    • #define
    • 는 문 두고


  • #include <stdafx.h>
    #include <stdio.h>
    int main ()
    {
    
    float meter=0;
    
    
    scanf("%f",&meter);
    
    int feet=meter*3.2808;
    float inch=(((meter*3.2808)-feet)/3.2808)*39.37;
    
    printf("%d feet %f inch\n",feet,inch);
    
    return 0;
    
    
    
    
    }
    
    


    2.3. 3 (2012 - 04 -09)

    • Operators
      • arithmetic operators: binary, unary
      • priority
      • precedence
    • assignment operator
    • decrements / increments : postfix / prefix

    • bitwise operator
      • Binary numeral system
    • 2's complement: 방법

    #include<stdio.h>
    
    int main()
    {
    	int input, output;
    	scanf("%d", &input);
    
    	output = ~input;
    	output ++;
    
    	printf("%d\n", output);
    	return 0;
    }
    

    2.3.1.

    • , 늘 배 리(?)
    • 고 and operator를 보다 라(scanf, printf )
    • shift operator를 128(=2^5) 고, 128 (variable) 그 변 left shift operator를 32를

      • 1110 0111 ^ 1101 0001 = ?
      • 1110 0111 | 1101 0001 = ?


    • Assignment operator
      • Equal sign (=) Assignment operator 를 나낸다
      • 게 값 된다
      • : ->

    • Decrement / Increment : postfix / prefix
      • Decrement는 --로, Increment는 ++로 나낸다
      • 감값 1
      • Postfix Decrement/Increment operator를 며 다른 끝난 된다
      • Prefix Decrement/Increment operator를 며 다른 된다

    • (Shorthand Operators)

      • +=, -=, *=, /=, %=
        • Ex. (A = A + B)는 (A += B ) 로 가능

    • (Bitwise Operators)
      • 2되는 Bit를
        • 2법 (Binary numeral system)
        • 1과 0만 를 나내는 방법.
        • 2 1 true, 0 false로 나나는 경
        • 2를 10로 바꾸려면 2 릿 따라 2^(n-1) 면 된다
        • 10를 2로 바꾸려면 10를 2로 나 나머다면 1, 다면 0 면 된다
      • Left shift : a<
        • a 모든 로 n 기며, 겨난 는 0 된다
      • Right shift : a>>n
        • a 모든 로 n 기며, 겨난 는 0 된다
      • And : a & b
        • a b 로 다르면 0, 로 같다면 1로
      • Or : a | b
        • a b 나라 1라면 1로
      • XOR : a ^ b
        • a b 로 다르다면 1, 로 같다면 0
      • 1's complement : ~a
        • a 를 모두 반다 : 1->0, 0->1

    • 2's complement
      • Bit
        • A를 -A로 나내려면, A 를 1's complement로 반 1면 된다



    #include <stdio.h>
    int main ()
    {
    	int num ;
    	int temp1 ;
    	
    		
    	printf ("enter a number : ");
    	scanf ("%d", &num);
    
    	temp1 = num & 1 ;
    
    	if (temp1 == 1) {
    
    		printf ("%d\n", num - 1);
    	}
    
    	else if (temp1 == 0) {
    
    		printf ("%d\n", num - 2);
    
    	}
    
    
    
    	return 0;
    
    
    
    }
    


    #include <stdio.h>
    int main ()
    {
    
    	int num = 1 ;
    	num = num<<7;
    	
    
    	printf ("%d\n", num);
    
    	int num2 ;
    	num2 = num ;
    
    	num2 = num2>>2;
    
    	printf ("%d\n", num2);
    
    	return 0;
    
    
    
    
    }
    

    • 1110 0111 ^ 1101 0001 = 0011 0110
    • 1110 0111 | 1101 0001 = 1111 0111
    Valid XHTML 1.0! Valid CSS! powered by MoniWiki
    last modified 2021-02-07 05:29:45
    Processing time 0.0338 sec