• 파일시티 이벤트
  • LF몰 이벤트
  • 캠퍼스북
  • 서울좀비 이벤트
  • 탑툰 이벤트
  • 닥터피엘 이벤트
  • 아이템베이 이벤트
  • 아이템매니아 이벤트
  • 통합검색(2,245)
  • 리포트(2,153)
  • 시험자료(62)
  • 방송통신대(18)
  • 논문(5)
  • 자기소개서(5)
  • 이력서(1)
  • 노하우(1)

"struct" 검색결과 1-20 / 2,245건

  • 파일확장자 자료구조 typedef struct DequeType get_front() get_rear() 소스 코드 구현
    struct DlistNode { // 노드의타입 element data;struct DlistNode *llink; struct DlistNode *rlink; } DlistNodetypedef ... struct DequeType { // 덱의타입 DlistNode *head; //첫번째노드를가리키는포인터 DlistNode *tail; //마지막노드를가리키는포인터 } DequeType ... #include #include #define TRUE 1 #define FALSE 0typedef int element // 요소의타입 typedef
    리포트 | 2페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.23
  • 파워포인트파일 struct, union, class.pptx
    struct { char *name; int std_num ; int phone; }student1, student2; student1.std_num=3; student1.name ... )(student1.std_num); struct union 의 멤버 중 하나에 어떠한 자료를 저장했으면 다른 멤버에는 아무것도 저장할 수 없다 . ... student1, student2; student1.std_num=3; Label1 - Caption = ( AnsiString )(student1.std_num); union struct
    리포트 | 5페이지 | 1,000원 | 등록일 2009.09.16
  • 한글파일 리눅스 커널 2.4 task_struct 분석
    된 터미널을 나타내는 구조체에 대한 포인터 이다. struct sem_undo *semundo; struct sem_queue *semsleeping; 표 [소스-14]. task_struct ... struct module *module; int (*load_binary)(struct linux_binprm *, struct pt_regs * regs); int (*load_shlib ... )(struct file *); int (*core_dump)(long signr, struct pt_regs * regs, struct file * file); unsigned long
    리포트 | 38페이지 | 3,000원 | 등록일 2007.04.23
  • 파일확장자 task_struct 2.4.18과 2.6.11 비교
    ▶ Task_struct source 2.4.18 분석285 volatile long state; /* -1 unrunnable, 0 runnable, >0 stopped ... #define TASK_RUNNING0 실행중#define TASK_INTERRUPTIBLE1 휴식상태-시그널로 실행중으로 변환가능#define TASK_UNINTERRUPTIBLE2 ... 휴식상태-조건이 맞을때까지 대기#define TASK_ZOMBIE3 소멸되었지만 테스크 구조가 남아있음#define TASK_STOPPED4 시그널에 의해 정지상태에
    리포트 | 28페이지 | 2,500원 | 등록일 2006.08.31
  • 한글파일 [컴퓨터과학 운영체제] 리눅스 pcb (task_struct)분석
    현재 process가 열고 있는 file들에 대한 descriptor를 포인터로 유지한다. 4 mm_struct { struct mm_struct { struct vm_area_struct ... 내의 구조체 및 관계 그래프 1) Linux Process Descriptor 도식 및 주요 structure { 1 tty_struct { struct tty_struct { int ... magic; struct tty_driver driver; struct tty_ldisc he below members.
    리포트 | 14페이지 | 1,500원 | 등록일 2005.06.23
  • 한글파일 OS - task_struct / init_task
    #include #include #include static struct vm_area_struct init_mmap = INIT_MMAP; static struct fs_struct ... p_ysptr, *p_osptr; /* PID hash table linkage. */ struct task_struct *pidhash_next; struct task_struct ... init_fs = INIT_FS; static struct files_struct init_files = INIT_FILES; static struct signal_struct init_signals
    리포트 | 5페이지 | 1,000원 | 등록일 2001.10.05
  • 파일확장자 [C++] struct와 union을 이용한 도형의 넓이 구하기
    ; double stde2; }; struct circleStruct { double radius; }; struct figure { shapeType shapename; double ... , circle}; struct triangleStruct { double base; double height; }; struct rectangleStruct { double side1 ... #include #include #include #include #include const double PI = 3.14; enum shapeType {triangle, rectangle
    리포트 | 4페이지 | 1,000원 | 등록일 2003.10.10
  • 한글파일 [컴퓨터프로그래밍] C언어의 struct와 C++언어의 class
    struct point { int x; int y; }; struct rect { struct point lb; struct point rt; ... struct rect { struct point *lb; struct point *rt; }; struct point { int x; int ... 표 1-1과 다른 점은 오직 struct 키워드 대신에 class 키워드가 사용되었다는 것밖에 없다.
    리포트 | 15페이지 | 무료 | 등록일 2002.05.09
  • 워드파일 마이크로프로세서_기본문법,LED ON OFF
    컴파일러는 struct 선언에서 이것에 대한 정보를 얻어서, 정의된 struct 변수를 메모struct school { char name[5]; int number; }; 라고 했다면 ... 그래서 struct school student; student.number = 2015; 와 같이 쓰거나 struct school *student; Student -> number ... 대표적으로 uint_8, uint_16 등이 있다. struct struct는 데이터를 구조화하여 사용할 수 있게 해준다.
    리포트 | 10페이지 | 1,000원 | 등록일 2021.09.23
  • 워드파일 [유닉스 시스템 프로그래밍] 10장 프로세스간 통신 (1)
    \n"); break; } } return 0; } 과제2 Sender.c #include #include #include #include struct mymsgbuf { long ... #include #include struct mymsgbuf { long mtype; char mtext[80]; }; int main(void) { // 키 생성 & 메시지 ... #include #include struct mymsgbuf { long mtype; char mtext[80]; }; int main (int argc, const char
    리포트 | 8페이지 | 1,000원 | 등록일 2022.02.09
  • 한글파일 소스 설명
    //수출에대한구조체선언 struct use { char day[20]; char reason[30]; int gold; }; //수입에대한구조체선언 struct earn { char ... ); fclose(wfp); system("cls"); } //벌은돈출력및입력알고리즘 void earn_don() { char tmp; struct earn don = { "" }; ... return 0; } //사용한금액출력및입력알고리즘 void use_don() { char tmp; struct use don = { "" }; char wstr[50] = "" FILE
    리포트 | 3페이지 | 1,500원 | 등록일 2020.11.30
  • 한글파일 c언어 및 실습 12장 레포트
    이 직사각형을 rectangle 구조체로 표현하면, struct rectangle { struct point point1; // 좌상 점 struct point point2; // ... #include #include //x,y 좌표를 받을 구조체를 선언한다. struct point { int x; int y; }; //직사각형을 받을 구조체를 선언한다. struct ... rect { struct point p1; struct point p2; }; //네변의 길이의 합을 구하는 함수를 정의한다. int Length(int *x1, int *y1,
    리포트 | 5페이지 | 1,500원 | 등록일 2020.11.11 | 수정일 2021.05.04
  • 한글파일 C언어 창작과제 - 인바디 검사 프로그램 구현
    #include #include #define SIZE 30 //빠른 실행을 원할때는 30을 작은 수로 바꾸기 struct people { char name[10]; int num; ... height, weight, gender, rate; float mus; //구조체 정의 }; int main(void) { char name[10]; //조회시에 입력받는 변수 struct ... ("%s", list[i].name); printf("번호를 입력하세요 : "); scanf("%d", &list[i].num); do{ printf("키(cm)를 입력하세요 : "
    리포트 | 9페이지 | 2,000원 | 등록일 2019.08.05 | 수정일 2021.04.07
  • 파일확장자 c언어 간단한 뱅킹프로그램 보고서 및 소스파일
    프로그램시 사용기술• 사용자를 나타낼 수 있는 struct 문법을 이용한다.• 동적 메모리 할당 : 사용자 인원 수는 모르며 프로그램 실행 중 총 인원수를 정할 수 있도록한다.• Call ... 모델링 개요• 사용자의 정보를 저장할 수 있는 struct를 정의한다.• 총 사용자를 프로그램 시작시 입력받아 힙 메모리 공간에 할당한다. • 계좌조회, 이체, 입금 그리고 출금을
    리포트 | 11페이지 | 2,000원 | 등록일 2021.03.20
  • 파일확장자 방송대 C프로그래밍 출석대체 만점
    ,day;}date;//학생 구조체 선언typedef struct student{ char name[10]; char sub[15]; char num[14]; date birth ... . ▶ 입력하는 주민등록번호는 임의의 값을 입력한다.1) 프로그램 소스#include //생년월일 구조체 선언typedef struct date{ int year,month ... ; const char *sex,*nat,*yr;}student;//정렬을 위한 사용자 정의 함수 선언void sort(student* member);//메인 함수void main(
    방송통신대 | 6페이지 | 8,000원 | 등록일 2022.01.02
  • 파일확장자 한국방송통신대 2020 출석수업대체과제물 C프로그래밍
    #include #include struct student {char *name[20]; //이름_입력값char *dept[20]; //학과_입력값char ... jumin[6]; //주민등록번호_입력값};void main(){struct student temp, X[3];int i,j;int yy;char year[3];char month ... ("%s", X[i].name);printf("학과를입력하시오: ");
    방송통신대 | 5페이지 | 6,000원 | 등록일 2021.03.31
  • 한글파일 울산과학기술원(UNIST) 일반대학원 화학과 학업계획서, 자기소개서(영문)
    structs. 9. ... That is why I will train the experiment of synthesizing a coordination polymer first in graduate school ... , x-ray diffraction spectrometry, GC, and HPLC.
    자기소개서 | 1페이지 | 3,800원 | 등록일 2021.07.12
  • 한글파일 (A+ 자료) C언어 구조체 자료
    struct?{ char?name[25]; int?employee_id; struct?dept?department; struct?home_address?*a_ptr; double? ... struct?card?c1,?c2;? 이 선언문에서 struct는 키워드이고 card는 구조 태그 이름, 변수 pips와 suit는 구조물의 구성원이다. ... struct?{ float?rei floatim; }?complex;? 9.2 구조물의 구성원 액세스. #define?100 struct?student?{ char?
    시험자료 | 10페이지 | 2,000원 | 등록일 2023.01.11 | 수정일 2023.01.17
  • 워드파일 방통대 ) 2020년) 출석 대체 ) C 프로그래밍
    //구조체 temp는 이를 돕기위한 보조로 사용된 변수이다. struct Student temp; int j, k; for (k=0; k ... //student.resident와 생년, 월과 일을 기억할 int pointer를 매개변수로 가지고, //윤년이면 0을 윤년이 아니면 1을 반환합니다. int birthday(struct ... = 0) return 0; else if (*year % 400 == 0) return 0; else return 1; }; //국적을 판단하는 함수 int nation(struct
    방송통신대 | 8페이지 | 5,000원 | 등록일 2020.05.23 | 수정일 2020.06.13
  • 한글파일 방통대 ) 2020년 c 프로그래밍 대체과제
    //구조체 temp는 이를 돕기위한 보조로 사용된 변수이다. struct Student temp; int j, k; for (k=0; k ... //student.resident와 생년, 월과 일을 기억할 int pointer를 매개변수로 가지고, //윤년이면 0을 윤년이 아니면 1을 반환합니다. int birthday(struct ... = 0) return 0; else if (*year % 400 == 0) return 0; else return 1; }; //국적을 판단하는 함수 int nation(struct
    방송통신대 | 8페이지 | 5,000원 | 등록일 2020.05.10 | 수정일 2020.06.13
  • 레이어 팝업
  • 레이어 팝업
  • 레이어 팝업