U E D R , A S I H C RSS

새싹교실/2012/아우토반/앞반/3.29



1.


O
O
O

2.

Ice breaking





    • 메모리

    • *, &

3.

  • : 는 F4(ThreeFs + Future Action Plan) .
    • : ThreeFs, ThreeFs(노), FiveFs(노)
    • 를 눌러보
      • Facts, Feelings, Findings, Future Action Plan. , , 느낀 , , .
      • 를 들 를 먹 면 : " 5만는 돈를 먹.() 대를 는데 .(느낌) 만 보 .() 는 미리 .( )"

  • . 를 배 메모리 동 . . 러를 를 느 ... ! -
  • . 런데 는데 . . ..

  • . 몰랐 . 런데, , 무 몰랐는데 . 모르는 빨랐는데
복문, 문 등 , 를 보는 . ...-

4.


(1) sizeof int, char, float, double 변 메모리를 ( )
(2) 를 10
(3) srand(time(NULL)) 는 바를
(4) . 보를 3번 .

4.1.1.


(1)
#include<stdio.h>
int main(void){
	int a;
	char b;
	float c;
	double d;

	printf("sizeof(a) = %d \n", sizeof(a));
	printf("sizeof(b) = %d \n", sizeof(b));
	printf("sizeof(c) = %d \n", sizeof(c));
	printf("sizeof(d) = %d \n", sizeof(d));
return 0;

}


sizeof(a) = 4
sizeof(b) = 1
sizeof(c) = 4
sizeof(d) = 8





(2)
long, double, float, char, return, union, string, if, for, while

(3)


(4)

 


4.1.2.


(1)
#include<stdio.h>
int main(void){
	int a;
	char b;
	float c;
	double d;

	printf("sizeof(a) = %d, 는 %d \n",sizeof(a),sizeof(int));
	printf("sizeof(b) = %d, 는 %d \n ",sizeof(b),sizeof(char));
	printf("sizeof(c) = %d, 는 %d \n",sizeof(c),sizeof(float));
	printf("sizeof(d) = %d, 는 %d \n ",sizeof(d),sizeof(double));

return 0;
}


sizeof(a) = 4, 는 4
sizeof(b) = 1, 는 1
sizeof(c) = 8, 는 8
sizeof(d) = 4, 는 4

맞는 모르.. 



(2)
return,continue,double,int,long,short,void,static,char,else,if,switch,for etc.....

(3)
seed를 , !

(4)
 



Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:29:46
Processing time 0.0397 sec