U E D R , A S I H C RSS

새싹교실/2012/개차반



1.



2.

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.0354 sec