일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- function
- 자료구조
- JavaScript
- API
- CLASS
- array
- windows
- Call-by-reference
- 노드
- meta
- HTML
- c++
- Sort
- query
- OOP
- algorithm
- 투자
- beans
- WebProgramming
- System
- java
- jsp
- 악성코드
- UTF-8
- request
- Kafka
- CSS
- C
- 포인터
- 윈도우즈
Archives
- Today
- Total
hahahia
난수 생성 srand 함수 본문
/* made by hahahia */
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
void main()
{
int A, i;
srand(time(NULL));
for(i=0; i<100; i++){
A=rand()%100+1;
printf(" %d ", A);
}
}
그냥뭐... srand 쓸 줄 알면 되는거같다 ㅎ
'Language > C' 카테고리의 다른 글
포인터(Pointer) (0) | 2012.02.17 |
---|---|
숫자 baseball game (0) | 2012.02.16 |
지역 변수와 전역 변수 (0) | 2011.05.22 |
C언어 함수 (0) | 2011.05.22 |
ab + ba = 99 를 만족하는 a, b값 구하는 프로그램 (0) | 2011.05.13 |
Comments