|
//7poker.h파일
#include<stdio.h>
#include<stdlib.h>
#include<curses.h>
#include<math.h>
#include<string.h>
#define START_MONEY 1000000 //초기자금 백만
#define UP -1
#define DOWN 15
#define NOT_ORDERED 0
#define CHECK 10
#define HIDDEN 15
#define SELECT_CARD
|
- 페이지 1페이지
- 가격 3,000원
- 등록일 2009.09.04
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
통합하고자 할 때 사용한다.
[ 프로그램 ]
/* 2개의 리스트 결합 프로그램 */
Concatenate_List(l1, l2)
LINK l1, l2;
{
LINK tai1;
if( l1->next == NULL)
l1->next = l2;
else
{
tai1 = l1->next;
while(tai1 != NULL)
tai1 = l1->next; }
tai1=l2;
}
} 내용설명과 소스있음.
|
- 페이지 131페이지
- 가격 3,000원
- 등록일 2008.06.13
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
canf("%d",&data2);
result = data1/data2;
printf("\n%d / %d = %d", data1,data2,result);
}
break;
case 'q':
return 0;
break;
default :
printf("\n바보냐?틀렸네!.");//틀린 답을 했을때 나옵니다.
}
scanf("%c",&oper);
}
}
|
- 페이지 2페이지
- 가격 1,700원
- 등록일 2007.03.26
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
|
- 페이지 10페이지
- 가격 1,000원
- 등록일 2006.12.13
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
t++;
continue;
}
if(count > 0 || a == 1)
printf("%d 의 %d승\n", i, count);
count = 0;
}
return 0;
}
|
- 페이지 1페이지
- 가격 300원
- 등록일 2004.04.08
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
C언어 링크드리스트(Linked-List)프로그램 소스코드입니다.
|
- 페이지 1페이지
- 가격 1,500원
- 등록일 2018.11.26
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
4.소스코드
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <windows.h>
#define TRUE 1
#define FALSE 0
#define GAME_TYPE 5
#define TIME 1000
#define START_MONEY 3000
#define SPEED 110
#define CARD_SPEED 200
int main_menu(int menu); // <
|
- 페이지 57페이지
- 가격 3,300원
- 등록일 2013.01.03
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
dr_list[0]));
serv_adr.sin_port=htons(25);
if(connect(sock,(struct sockaddr*)&serv_adr,sizeof(serv_adr))==-1)
error_handling(\"connect() error\");
memset(&rcv_message,0,100);
memset(&rcv,0,4);
read(sock,rcv_message,100);
strncpy(rcv,rcv_message,3);
if(strcmp(rcv,\"220\")!=0){
printf(\"%s\",rcv_messa
|
- 페이지 10페이지
- 가격 2,000원
- 등록일 2011.11.27
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
//해더파일 선언
int main(void)
{
float a,b,d;
int e;
char c;
while(1) //무한반복
{
printf("\n");
printf("\n");
printf("///////////////////////////////////////////////////////\n");
printf("// 간단한 연산을 수행하는 프로그램입니다.
|
- 페이지 2페이지
- 가격 800원
- 등록일 2009.01.02
- 파일종류 텍스트(txt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
C언어로 짠 가위바위보 게임 소스 입니다.
포인터를 사용하지 않고 if 문을 사용하였습니다.
|
- 페이지 1페이지
- 가격 1,000원
- 등록일 2009.05.20
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|