|
[ERROR : 10731] 오류 발생.
|
- 페이지 20페이지
- 가격 3,000원
- 등록일 2007.12.19
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
//Function Prototypes
void initialize(char board[SIZE][SIZE]);
void print_board(char board[SIZE][SIZE]);
int is_winner(char board[SIZE][SIZE]);
int is_full(char board[SIZE][SIZE]);
int check_move(char board[SIZE][SIZE], int x, int y);
//Main Function
int main() {
//Declare necessary
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2012.07.29
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
.............
typedef struct listNode {
...
} listNode; // for nodes s.t. [coefficient/exponent/link pointer]
typedef struct listHeader {
...
} listHeader; // for header node s.t. [length/head pointer/tail pointer]
void init(listHeader *plist)
// initializing the header node's leng
|
- 페이지 50페이지
- 가격 3,300원
- 등록일 2010.01.04
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
1) main function
int main(void){
char s[MAX_LINE][100]={NULL}; // for file strings
readFile(s);
storeSubstrings(s);
searchString(s);
return 0;
}
2) readFile function
//read strings from "input.txt" file
void readFile(char (*temp)[100]){
FILE* f; // file pointer f
f=fopen("input
|
- 페이지 50페이지
- 가격 900원
- 등록일 2010.01.04
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
.....
2) stack: stack.h
typedef struct {
int x;
int y;
} data;
typedef struct stackNode{
data data;
stackNode* link;
} stackNode;
stackNode* top; //top pointer
void init()//initializing stack
bool isEmpty() // check if it is empty or not
void push(data td)
data pop()//
|
- 페이지 50페이지
- 가격 3,300원
- 등록일 2010.01.04
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
c
0
18.1
9.57
25.32
50.50
86.28
129.4
127.13
101.89
81.66
65.45
52.45
42.04
38.82
78.82
13
14
15
16
17
18
19
19.52
20
21
22
23
24
25
c
c
c
c
c
c
c
c
d
d
d
d
d
d
68.01
58.68
50.62
43.68
37.69
32.52
28.06
35.99
67.21
60.17
53.87
48.22
43.17
38.65 10장 연습문제
10-1)
10-3)
10-5)
10-7)
10-9)
|
- 페이지 9페이지
- 가격 1,200원
- 등록일 2009.03.25
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
* 세로\\n\\n\");
printf(\"사각형의 가로: %d\\n\", a);
printf(\"사각형의 세로: %d\\n\", b);
printf(\"사각형의 넓이: %d\\n\", a*b);
}
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.12.10
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
자열을 파일에 써 넣기
[1] \"Turbo C\",\"Basic--\",\"Fortran\",\"Cobol--\",\"PL-1---\"의 5개 문자열을 re4.txt에 써 넣기
#include <stdio.h>
FILE *in;
main(){
static char a[][8]={\"Turbo C\",\"Basic--\",\"Fortran\",\"Cobol--\",\"PL-1---\"};
int i; //-는 공란을 의미한다.
in=fopen(\"re4.tx
|
- 페이지 12페이지
- 가격 2,300원
- 등록일 2004.06.09
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
배열로 만들 때는 int를 사용해도 된다.
【 8】 문자형의 2차원 배열
<예제1> 오른쪽 데이터를 한 문자씩 2차원 배열에 대입하여 표시하라.
S
e
o
u
l
S
t
a
n
d
T
o
u
c
h
#include <stdio.h>
static char a[][5]={\'S\',\'e\',\'o\',\'u\',\'l\',\'S\',\'t\',\'a\',\'n\',\'d
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2004.06.26
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
형 배열을 선언하여 0보다 큰 실수 5개를 입력 받아서 저장하자. 그리고 이렇게 저장된 값을 은행 고객의 잔고하고 가정하자. 즉 5명의 고객 잔고를 배열에 저장한 셈이다. 이제 프로그램 사용자로부터 이자율을 한번 입력 받는다. 만약 3.3이
|
- 페이지 8페이지
- 가격 4,200원
- 등록일 2013.10.26
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|