3. ¶
- : 는 F4(ThreeFs + Future Action Plan) 맞 .
- : ThreeFs, ThreeFs(노모), FiveFs(노모)
- 링를 눌러보 명
- Facts, Feelings, Findings, Future Action Plan. , , 느낀 , , .
- 를 들 돈를 먹 대 를 면 : " 남 5만는 돈를 먹.() 대를 는데 맛 .(느낌) 남 만 보 맛 대면 는 .() 는 미리 보 높 돈 봐.( )"
- Facts, Feelings, Findings, Future Action Plan. , , 느낀 , , .
- : ThreeFs, ThreeFs(노모), FiveFs(노모)
4. ¶
(1) sizeof 를 int, char, float, double 변 변를 리는 변 메모리를 는 량 ( 및 )
(2) 를 10
(3) srand(time(NULL)) 미는 바를
(4) 바보 만. 바보를 3번 램 .
(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
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.....
return,continue,double,int,long,short,void,static,char,else,if,switch,for etc.....
(3)
seed를 , 를 는!
seed를 , 를 는!
(4)










