4 과 ¶
-
{{{ }}}.
곽길 ¶
11.간 , int* a; int b; int **c; &c,c,*c,&a,a 각각 고, 과 .
- 값 갖 . 그거 &c 기 고 c a 값 . *c a 값 . &a a 값, a a b b 값 .12. 고, 그 값 .
int* a;
int b=5;int* a;
int** c;
c=&a;
a=&b;
a=&b;
- *c=9;
printf("%d %d",*c,**c);
- : int a, b 값 5 , c . a c . b a . 그고 c 값 9 . a 값 갖고 c 9 . *c,**c a 9 .
- 기 간 과 그 게 . F R 꽉 경 경 F R 기 F,R 고 꽉 경 경 구 . 결 겠 그 꽉 고 길 N N-1 꽉 간 . 게 공간 게 . 결 .
- c char,int,float 기 과 , , 구 , typedef 공. typedef #define과 c 고 typedef c . #define .
< : typedef 기 ; >
:
#include <stdio.h>
void main()
{
#include <stdio.h>
void main()
{
typedef char *YOU;
YOU name ="color";
YOU color = "red, blue, yellow, black";
printf("name=%s \n",name);
printf("color=%s \n",color);
}YOU name ="color";
YOU color = "red, blue, yellow, black";
printf("name=%s \n",name);
printf("color=%s \n",color);
결과 :
name =color
color =red, blue, yellow, black
name =color
color =red, blue, yellow, black
:
typedef 기 char *YOU 고 YOU name char *name 과 .
4.구 student 구 고, student 구 0~3 AClass 고, 그 .
#include<stdio.h>
typedef 기 char *YOU 고 YOU name char *name 과 .
구 char 고, int .
-.. 까..#include<stdio.h>
struct Student
{
{
int age;
char name[];
char name[];
};
for(i=0;i<4;i++){
}
return 0;
}
}
- 까 겠
¶
8. 그 .
과 8 . 게
1
3 2
4 5 6
10 9 8 7
11 12 13 14 15
21 20 19 18 17 16
hint) Dp = (int**)malloc(sizeof(int*));
과 8 . 게
1
3 2
4 5 6
10 9 8 7
11 12 13 14 15
21 20 19 18 17 16
#include <stdio.h>
int main()
{
int a[6][6];
int i,j;
int count=1;
for(i=0;i<6;i++)
{
if(i%2!=0)
{
for(j=i;j>=0;j--)
{
a[i][j]=count;
count++;
}
}
else
{
for(j=0;j<=i;j++)
{
a[i][j]=count;
count++;
}
}
}
for(i=0;i<6;i++)
{
for(j=0;j<=i;j++)
{
if(a[i][j]<10)
printf("%d ",a[i][j]);
else
printf("%d ",a[i][j]);
}
printf("\n");
}
return 0;
}
9.2 3x3 개 고, 그 .hint) Dp = (int**)malloc(sizeof(int*));
10.3 10과 결 . 과 . 고, 고
//10.LinearSearch 구. 1000개 고, random 1 1000까 , 777 .
&c : c
c : c 값(a )
*c : c 곳 값(b )
&a : a
a : a 값(b )
c==&a
*c==a==&b
12. 고, 그 값 .
int* a;
int b=5;
int** c;
c=&a; // c a
a=&b; // a b
**c=9; // c (?) 9
printf("%d %d",*c,**c); // *c a 고 **c b 값 .
//10.LinearSearch 구. 1000개 고, random 1 1000까 , 777 .
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void random(int a[]);
int main()
{
int x;
int a[1000];
int i;
srand(time(NULL));
for(i=0;i<1000;i++)
{
x=1+rand()%1000;
a[i]=x;
// printf("%d ",a[i]);
}
// printf("\n");
random(a);
return 0;
}
void random(int a[])
{
int find[1000]={0};
int i;
for(i=0;i<1000;i++)
{
if(a[i]==777)
find[i]=i;
if(find[i]!=0)
printf("777 %d \n",find[i]);
}
}
11.간 , int* a; int b; int **c; &c,c,*c,&a,a 각각 고, 과 .&c : c
c : c 값(a )
*c : c 곳 값(b )
&a : a
a : a 값(b )
c==&a
*c==a==&b
12. 고, 그 값 .
int* a;
int b=5;
int** c;
c=&a; // c a
a=&b; // a b
**c=9; // c (?) 9
printf("%d %d",*c,**c); // *c a 고 **c b 값 .
Circular Queue .
- 기
typedef struct
{
- 기 .
- 기 Front Rear index Empty Full 구 .
typedef 고, 간 .- 기 Front Rear index Empty Full 구 .
- 기
typedef struct
{
char *name;
int age;
char sex;
}Student;int age;
char sex;
구 student 구 고, student 구 0~3 AClass 고, 그 .
구 char 고, int .
과 경 게 고, 과 .
구 char 고, int .
과 경 게 고, 과 .
#include <stdio.h>
typedef struct
{
char *name;
int age;
char sex;
}Student;
int main()
{
Student Std[4];
int i;
Std[0].name="곽길";
Std[0].age=24;
Std[0].sex='F';
Std[1].name="";
Std[1].age=24;
Std[1].sex='F';
Std[2].name="";
Std[2].age=23;
Std[2].sex='F';
Std[3].name="";
Std[3].age=22;
Std[3].sex='F';
printf("\t\t\n");
for(i=0;i<4;i++)
{
printf("%s\t%d\t%c\n",Std[i].name,Std[i].age,Std[i].sex);
}
return 0;
}
¶
1~6. Koistudy.net 106~111
->!
7. Koistudy.net 125, 152( 기 ) 3n+1
accept 걸 accept 게 ^^
-> !
accept 걸 accept 게 ^^
-> !
8. 그 .
과 8 . 게
과 8 . 게
1
3 2
4 5 6
10 9 8 7
11 12 13 14 15
21 20 19 18 17 16
#include <stdio.h>
int main(){
int i,j;
int arr[6][6]={0,};
int num=0;
for(i=0 ; i<6 ; i++){
if(i%2==0){
for(j=0 ; j<=i ; j++) arr[i][j]=++num;
}else{
for(j=i ; j>=0 ; j--) arr[i][j]=++num;
}
}
for(i=0 ; i<6 ; i++){
for(j=0 ; j<6 ; j++){
if(arr[i][j] != 0) printf("%3d",arr[i][j]);
}
printf("\n");
}
return 0;
}
9. 2 3x3 개 고, 그 .
hint) Dp = (int**)malloc(sizeof(int*));
hint) Dp = (int**)malloc(sizeof(int*));
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(){
int **p1;
int **p2;
int i,j;
srand(time(NULL));
p1=(int**)malloc(sizeof(int*)*3);
p2=(int**)malloc(sizeof(int*)*3);
for(i=0 ; i<3 ; i++){
p1[i]=(int*)malloc(sizeof(int*)*3);
p2[i]=(int*)malloc(sizeof(int*)*3);
}
for(i=0 ; i<3 ; i++){
for(j=0 ; j<3 ; j++){
p1[i][j]=1+rand()%9;
p2[i][j]=1+rand()%9;
}
}
for(i=0 ; i<3 ; i++){
for(j=0 ; j<3 ; j++){
printf("%3d",p1[i][j]);
}
printf("\n");
}
printf("\n");
for(i=0 ; i<3 ; i++){
for(j=0 ; j<3 ; j++){
printf("%3d",p2[i][j]);
}
printf("\n");
}
printf("\n");
for(i=0 ; i<3 ; i++){
for(j=0 ; j<3 ; j++){
p1[i][j]+=p2[i][j];
printf("%3d",p1[i][j]);
}
printf("\n");
}
return 0;
}
10. 3 10과 결 . 과 . 고, 고
LinearSearch 구. 1000개 고, random 1 1000까 , 777 . 그 결과 겠?
(rand()%1000 1 1000까 .)
LinearSearch 구. 1000개 고, random 1 1000까 , 777 . 그 결과 겠?
(rand()%1000 1 1000까 .)
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(){
int arr[1000];
int i;
int count=0;
srand(time(NULL));
for(i=0 ; i<1000 ; i++){
arr[i]=rand()%1000;
}
for(i=0 ; i<1000 ; i++){
if(arr[i]==777){
printf("%d 777 \n",i+1);
count++;
}
}
printf("%d개 \n",count);
if(count == 0){
printf("777\n");
}
return 0;
}
11. 간 , int* a; int b; int **c; &c,c,*c,&a,a 각각 고, 과 .
int* a;
int b=10;
int** c;
a=&b;
c=&a;
printf("%d\n",a); //b
printf("%d\n",&a); //a
printf("%d\n",*a); //b 값
printf("%d\n",b); //b 값
printf("%d\n",&b); //b
printf("%d\n",c); //a
printf("%d\n",&c); //c
printf("%d\n",*c); //b
12. 고, 그 값 .
int* a;
int b=5;
int** c;
c=&a;
a=&b;
**c=9;
printf("%d %d",*c,**c);
b 9 !
1. LinkedList node 고, 그 .
2. Circular Queue .
(arrangement) 구 과 .
, 과 개 값 게 .
, 꺼 게 .
. 게 .
(arrangement) 구 과 .
, 과 개 값 게 .
, 꺼 게 .
. 게 .
3. typedef 고, 간 .
typedef 기 게
<typedef >
typedef <> <>;
typedef 기 게
<typedef >
typedef <> <>;
<typedef >
typedef int AA;
AA num=500;
typedef int AA;
AA num=500;
4. 구 student 구 고, student 구 0~3 AClass 고, 그 .
구 char 고, int .
과 경 게 고, 과 .
구 char 고, int .
과 경 게 고, 과 .
#include <stdio.h>
struct student{
char name[20];
int num;
int age;
};
int main(){
int i;
struct student aclass[3]={{"곽길",201001,24},
{"",201002,23},
{"",201003,22}};
for(i=0 ; i<3 ; i++){
printf("%s %d %d\n",aclass[i].name,aclass[i].num,aclass[i].age);
}
return 0;
}
¶
1~6 공:D
10.3 10과 결 . 과 . 고, 고
10.3 10과 결 . 과 . 고, 고
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main(void){
int i,ran,arr[1000]={0};
srand(time(NULL));
for(i=0;i<1000;i++){
ran = 1+rand()%1000;
}
if(arr[i]==777){
printf("777I arr[%d] ",i);
}
else
printf("777I .");
return 0;
}
12. 고, 그 값 .
int* a;
int b=5;
int** c;
int* a;
int b=5;
int** c;
c=&a;
a=&b;
a=&b;
- *c=9;
printf("%d %d",*c,**c);
1.LinkedList node 고, 그 .
NODE*CreateNode(char name [])
{
NODE*NewNode = (NODE*)malloc(sizeof(NODE));
NODE*CreateNode(char name [])
{
NODE*NewNode = (NODE*)malloc(sizeof(NODE));
2. Circular Queue .
구 과 . 그 경 기 계 게 overflow 게 기 과게 , 과 0 게 . 구 구 고 (circular queue) 고
구 과 . 그 경 기 계 게 overflow 게 기 과게 , 과 0 게 . 구 구 고 (circular queue) 고
3. typedef 고, 간 .
1)기 그 게
Typedef 기__ __;
) typedef unsigned char uchar;
2) typedef기
Typedef 공
//typedef 기 .
1)기 그 게
Typedef 기__ __;
) typedef unsigned char uchar;
2) typedef기
Typedef 공
//typedef 기 .
#include<stdio.h>
typedef int Num;
int main(){
Num a=10;
int b=20;
printf("sum = %d\n",a+b);
return 0;
}
typedef int char 꾸 .
typedef . int NUM 꾼 .
typedef . int NUM 꾼 .
그고 int . NUM 값과, int 값 게 값 .
4. 구 student 구 고, student 구 0~3 AClass 고, 그 .
o 구 char 고, int .
o 과 경 게 고, 과 .
o 구 char 고, int .
o 과 경 게 고, 과 .
#include<stdio.h>
#include<string.h>
int main(void){
struct student{
char name[10];
int age;
};
struct student s[4];
int i;
strcpy(s[0].name,"");
s[0].age = 23;
strcpy(s[1].name,"");
s[1].age = 24;
strcpy(s[2].name,"곽길");
s[2].age = 24;
strcpy(s[3].name,"");
s[3].age = 22;
for(i=0;i<4;i++){
printf(" : %s\n",s[i].name);
printf(" : %d\n",s[i].age);
}
return 0;
}










