일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- relative path
- html multimedia
- 토큰경제
- #bubbleSort
- html5 new tag
- git flow
- #자바상속#자바이즈어#is~a
- html charset
- #CallByAddress
- hyperledger transaction
- #android activity
- #성적관리프로그램
- #C++ has~a
- border-box
- html video
- #binary
- docker example
- html id
- #2차원배열
- 하이퍼레저패브릭
- mac terminal command
- #1차원배열
- #3차원배열
- html code
- html plug-in
- #JAVASCRIPT
- #다차원포인터
- html object
- #C++ 연산자함수오버로딩
- html youtube
- Today
- Total
A sentimental robot
sprintf , srand 본문
#include <stdio.h>
#include <string.h>
void main()
{
char buf[100];
char name[100];
int i;
for(i=1 ; i<10 ; i++){
strcpy_s(name, "jo" );
sprintf_s(buf,"%d",i); // buf라는 배열에 i값을 ( 문자열형태로 )넣기 , 실제 출력기능이 아님
strcat_s(name,buf);
printf("%s\n",name);
}
}
#include <stdio.h>
#include <string.h>
void main()
{
char buf[100];
char name[100];
int x;
int i;
for(i=1 ; i<10 ; i++){
x = rand()%100; // random number producing , 난수를 2자리 수로 제한( %100 )
strcpy_s(name, "jo" );
sprintf_s(buf,"%d",x);
strcat_s(name,buf);
printf("%s\n",name);
}
}
#include <stdio.h>
#include <string.h>
#include <time.h> // srand함수를 쓰기 위한 헤더파일
void main()
{
char buf[100];
char name[100];
int x;
int i;
srand((unsigned)time(NULL)); // seeding random number
// The random numbers produced are same, so using srand makes the numbers different at each time.
for(i=1 ; i<10 ; i++){
x = rand()%100; // pseudo random number producing
strcpy_s(name, "jo" );
sprintf_s(buf,"%d",x);
strcat_s(name,buf);
printf("%s\n",name);
}
}
'C ' 카테고리의 다른 글
정렬(sorting) (0) | 2018.01.03 |
---|---|
atoi함수 (0) | 2018.01.03 |
typedef structure (0) | 2018.01.03 |
함수포인터 (0) | 2018.01.03 |
strdup함수 활용예제 (0) | 2018.01.03 |