• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 1,122건

소스 (c 소스파일 + make 파일) / 한글 보고서 파일 (배경지식,코드 다이어그램,알고리즘,결과,고찰) 레드햇9 / 페도라6,7,8 / gcc version 3.x ~ 4.x / 소스 코드 컴파일 및 실행 확인 
  • 페이지 11페이지
  • 가격 2,000원
  • 등록일 2008.04.02
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
c. 파일의 내용 표시(화일 이름을 묻는 프롬프트 사용) d. 다른 디렉토리로 바꿈(새로운 디렉토리 위치를 묻도록 하고 바뀐 디렉토리의 이름을 출력) e. 종료 Source 1 #!/bin/ksh 2 3 print \'MY MENU\' 4 5 read com?\"INPUT : \" 6 7 8 if [[ $com = [a]* ]] 9 then 10 #현
  • 페이지 6페이지
  • 가격 1,000원
  • 등록일 2009.01.06
  • 파일종류 한글(hwp)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
mysh 로서 현재경로로 표현된 프롬프트가 기본으로 제공되며 다음과 같은 built-in명령어를 제공합니다. myls : path를 입력받아서 해당 path가 파일이면 파일의 정보를, 디렉토리이면 하위파일들의 정보를 리스팅합니다. mycd : 원하는 디렉
  • 페이지 23페이지
  • 가격 3,500원
  • 등록일 2008.12.29
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
Code #include <stdio.h> #include <sys/types.h> #include <unistd.h> #include <fcntl.h> #define BLOCKSIZE 1000000 // 한번에 읽을 파일크기의 단위 int main(int argc, char **argv){ int inputfile, outputfile; char buff[BLOCKSIZE]; char rbuff[BLOCKSIZE]; // reverse 위한
  • 페이지 6페이지
  • 가격 1,000원
  • 등록일 2008.12.27
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
C81F346A_D9D4_4ABD_B47C_66579B7BEEB6__INdefine AFX_KDLG_H__C81F346A_D9D4_4ABD_B47C_66579B7BEEB6__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // Kdlg.h : header file // ///////////////////////////////////////////////////////////////////////////// // CKdlg dialog class C
  • 페이지 18페이지
  • 가격 2,000원
  • 등록일 2004.09.23
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
C`, `AC`, `SQR`, `%`, `=`}; TextField text; // 결과 및 수식이 나오는 TextField Label post; // 입력받은 infix수식을 스택을 이용해서 postfix 폼으로 바꿈 String infix = null; // 입력받은 수식 스택없이 사용하면 1+2*3 = 9가 나옵니다. 하지만 스택을 사용한 계
  • 페이지 5페이지
  • 가격 2,000원
  • 등록일 2003.09.29
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
(countveri=0; countveri<VERTEX_MAX; countveri++ ) { printf(\"v[%d]\\t\", countveri+1); if ( source[countveri] == 0 ) printf(\"O\\t\"); else printf(\"X\\t\"); if ( sink[countveri] == 0 ) printf(\"O\\n\"); else printf(\"X\\n\"); } printf(\"\\n\"); return 0; } <출력화면> (a) (b) (c) 
  • 페이지 5페이지
  • 가격 700원
  • 등록일 2008.04.29
  • 파일종류 한글(hwp)
  • 참고문헌 있음
  • 최근 2주 판매 이력 없음
c   // HelloWorldImp.c #include “HelloWorld.h” #include <stdio.h> void HelloWorld_displayHelloWorld(struct HelloWorld *this) { printf(“Hello World!\\n” ); } % cc HelloWorld.c HelloWorldImp.c -o libhello.so % java Main Hello World! 참조SITE http://www.wisefree.com/homepage_ver02/homepage_
  • 페이지 5페이지
  • 가격 300원
  • 등록일 2004.08.14
  • 파일종류 한글(hwp)
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
class Set { private: int arySize; //maximum size of a set int currentSize; //current size of a set int* data; //pointer for data string set_name; //name of a set public: Set(); Set(int asize, string setName); Set(const Set& copycon); ~Set(){}
  • 페이지 1페이지
  • 가격 4,000원
  • 등록일 2010.11.09
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
and quit void errquit( char *msg ) { perror(msg); exit(0); } int MASTER_PORT, sock, packetID = 1; char nodeOpt; _childs childs[MAX_VERTEX]; struct sockaddr_in masteraddr; /////////////////// // Main function // int main( int argc, char *argv[] ) input.txt Makefile master.c nod
  • 페이지 10페이지
  • 가격 2,000원
  • 등록일 2009.01.06
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
top