반응형

정수 배열을 받아서 원소들을 난수로 채우는 함수를 작성하고 테스트하라. 난수는 라이브러리 함수인 rand()를 사용하여 생성한다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define SIZE 100
void array_fill(int *A, int size);
int main(void)
{
    int a[SIZE]={0};
    int i;
    srand((unsigned)time(NULL));
    array_fill(a,SIZE);
    for(i=0;i<SIZE;i++)
        printf("%d "*(a+i));
    printf("\n");
    return 0;
}
void array_fill(int *A, int size)
{
    int i;
    for(i=0;i<size;i++)
        *(A+i)=rand()%100;
}
cs


반응형

'컴퓨터 & 프로그래밍 & 전자공학 > C언어' 카테고리의 다른 글

학점과 점수  (0) 2016.08.15
배열 출력  (0) 2016.08.15
정수의 합과 차  (0) 2016.08.15
바이트 순서 알아보기  (0) 2016.08.14
에라스토테네스의 체  (0) 2016.08.14

+ Recent posts