• 통큰쿠폰이벤트-통합
  • 통합검색(2,104)
  • 리포트(2,017)
  • 시험자료(64)
  • 방송통신대(14)
  • 자기소개서(5)
  • 논문(1)
  • 이력서(1)
  • ppt테마(1)
  • 노하우(1)

"struct" 검색결과 21-40 / 2,104건

  • (A+ 자료) C언어 구조체 자료
    struct?{char?name[25];int?employee_id;struct?dept?department;struct?home_address?*a_ptr;double? ... 스페이드 중 3개는 pip 값, 3은 spad를 가진다. 이를 토대로 우리는 구조물을 선언할 수 있다.struct?card?{int?pips;char?suit;};?struct? ... spades}struct?card?{????int?pips;cdhs?suit;};typedef?struct?card?card;?card?assign_values(int?
    시험자료 | 10페이지 | 2,000원 | 등록일 2023.01.11 | 수정일 2023.01.17
  • 건국대학교 전기전자기초설계및소프트웨어실습 4주차 레포트 A+
    student STD;// struct student를 STD로 쓸 수 있음int main(){STD std1; // struct student 대신 STDstd1.grade = ... ;}; // 구조체의 정의는 반드시 ;로 끝나야 한다.int main(){struct student std1;std1.grade = 'A';std1.mid_term = 97;std1 ... is %d\n", std1.attendance);}B.Data2)예제 2-1A.Source Code#include struct student // student라는 이름의 구조체를정의
    리포트 | 25페이지 | 7,000원 | 등록일 2024.04.14 | 수정일 2024.04.22
  • 쉽게 풀어쓴 C언어 express 13장 구조체 연습문제
    //1번/*#include #include struct book {int id;char title[100];char author[20];}aa;int main(){struct book ... (struct complex a, struct complex b){struct complex c;c.real = a.real + b.real;c.imag = a.imag + b.imag ... struct point{int x, y;};int equal(struct point a, struct point b){if (a.x == b.x && a.y == b.y)return
    시험자료 | 10페이지 | 1,500원 | 등록일 2021.06.06 | 수정일 2021.12.06
  • 2020학년도 2학기 C++ 프로그래밍 출석대체(온라인평가) 문제 소스코드
    _maxCnt;int _vertexCnt;double polygonArea;struct C2D {double x, y;};list c2dList;public:Polygon(int ... 위치값을 가르킴)속성비고int _maxCnt;최대 꼭지점 개수 값을 저장int _vertexCnt;현재 꼭지점 개수 값을 저장double polygonArea;다각형 면적을 저장struct ... #define SOME_UNIQUE_NAME_HERE#include #include #include #include using namespace std;class Polygon {int
    방송통신대 | 7페이지 | 4,000원 | 등록일 2021.02.23
  • 자료구조 연결 리스트를 이용한 주소록
    [100];// 메뉴를 저장하는 이중 연결리스트typedef struct DListNode { element data; struct DListNode* llink; struct DListNode ... address; element birth; struct ListNode* llink; struct ListNode* rlink;} ListNode; ... * rlink;} DListNode;// 정보를 저장하는 이중 연결리스트typedef struct ListNode { element name; element pnum; element
    리포트 | 4페이지 | 1,000원 | 등록일 2022.05.16
  • 네트워크 프로그래밍_파일전송 프로그램 작성하기
    ;int clnt_sock;char buf[256];struct sockaddr_in serv_addr;struct sockaddr_in clnt_addr;socklen_t clnt_addr_size ... (serv_sock, (struct sockaddr*)&serv_addr, sizeof(serv_addr))==-1)error_handling("connect() error!") ... , fd;int str_len, len;struct sockaddr_in serv_addr;char message[30], buf[BUFSIZ];FILE* file = NULL;if
    리포트 | 8페이지 | 3,000원 | 등록일 2024.04.20
  • 자료구조 스택 배열로 구현한 소스 코드
    ];}Student;typedef struct {Student stack[MAX_STACK_SIZE]; //s->stack[].student_noint top;} StackType; ... //typedef int element; 삭제typedef struct {int student_no;char name[MAX_STRING];char address[MAX_STRING ... #include #include #include#define MAX_STACK_SIZE 100#define MAX_STRING 100
    리포트 | 3페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.23
  • 자료구조 학생 스택 소스 코드 구현
    ];}Student;typedef struct {Student stack[MAX_STACK_SIZE]; //s->stack[].student_noint top;} StackType; ... //typedef int element; 삭제typedef struct {int student_no;char name[MAX_STRING];char address[MAX_STRING ... #include #include #include#define MAX_STACK_SIZE 100#define MAX_STRING 100
    리포트 | 3페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.22
  • 운영체제 커널 모듈 프로그래밍에서의 Linked list 사용
    구조체에 list_head가 포함되어야 한다.LIST_HEAD(my_list);리스트 선언struct hello_node *node = kmalloc(sizeof(struct hello_node ... hello_node {int num;struct list_head list;};static int __init hello_init(void){int i;struct hello_node ... 소스코드 설명 ( 직접 작성한 소스코드중에 핵심 부분을 발췌하여 설명 )struct hello_node {int num;struct list_head list;};구조체 생성 , 데이터
    리포트 | 6페이지 | 2,000원 | 등록일 2021.11.01
  • 자료구조 희소행렬 소스코드 구현
    #include #include #define ROWS 3#define COLS 3#define MAX_TERMS 10typedef struct { ... int row; int col; int value;} element;typedef struct SparseMatrix { element data[MAX_TERMS]; int rows ... cols; // 열의 개수 int terms; // 0이 아닌 항의 개수} SparseMatrix;// 희소 행렬 덧셈 함수// 메모리를 절약할 수 있는 방법SparseMatrix sparse_matrix_add2
    리포트 | 2페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.23
  • [대학 프로그래밍 C언어] 11. 구조체와 사용자 정의 자료형
    ;struct point org(struct point p);//struct point 선언된 다음int main(void){ ... //x, y 좌표};int main(void){struct point p1;//새로 만든 data type, 실제 변수명//p1이라는 바구니에 x, y들어있음,struct point ... 구조체#include // point라는 structure(구조체)의 정의struct point{int x;//member variable, 구조체 선언int y;
    리포트 | 7페이지 | 5,000원 | 등록일 2021.07.07
  • [과제100점] 연결형 자료구조를 이용하여 다항식 2개를 입력받아 다항식의 곱셈 및 덧셈을 구하여 결과를 출력해 주는 프로그램을 C언어를 이용해서 구현하세요.
    = (struct node*)malloc(sizeof(struct node));struct node* z = (struct node*)malloc(sizeof(struct node) ... struct node* p);int main(){struct node* x = (struct node*)malloc(sizeof(struct node));struct node* y ... node* p1, struct node* p2, struct node* p3){struct node* temp;struct node* p2_temp;struct node* p3_temp
    리포트 | 18페이지 | 2,000원 | 등록일 2020.11.02
  • [자료구조] 희소행렬 덧셈 함수와 출력을 구현한 소스코드
    #include #include #define ROWS 3 #define COLS 3#define MAX_TERMS 10 typedef struct ... {int row;int col;int value; } element;typedef struct SparseMatrix { element data[MAX_TERMS];int rows
    리포트 | 5페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.23
  • 자료구조 이진트리 탐색 소스 코드 구현
    #include #include typedef struct TreeNode {int key;struct TreeNode *left, *right;}
    리포트 | 2페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.23
  • 자료구조 원형리스트 소스코드 구현
    #include #include typedef int element;typedef struct ListNode {element data;struct ... ListNode *link;} ListNode;//오류 처리 함수void error(char *message){fprintf(stderr, "%s\n", message);exit( ... 프로그램ListNode *create_node(element data, ListNode *link){ListNode *new_node;new_node = (ListNode *)malloc(sizeof
    리포트 | 4페이지 | 1,000원 | 등록일 2023.04.07 | 수정일 2023.05.23
  • 알고리즘 C언어 Trie Spelling Correction 구현
    typedef struct node* nodeptr;typedef struct node { char ch; // character in this node ... record { char word[50]; int widx; int wfreq;} ty_rec;typedef struct correct_result { char ... nodeptr right; // a horizontal pointer nodeptr below; // a vertical pointer} nodetype;typedef struct
    리포트 | 3,000원 | 등록일 2021.12.09 | 수정일 2021.12.29
  • 개념을 콕콕 잡아주는 C프로그래밍 부록 9장 소스코드
    : %s\n", info1.type);return 0;}//C9E16typedef struct point {int x, y;}POINT;typedef struct line {POINT ... POINT;typedef struct line {POINT start;POINT end;}LINE;void PrintLine(int st_x, int st_y, int ed_x, int ... ;int dy = L.end.y - L.start.y;return sqrt(dx * dx + dy * dy);}//C9E17typedef struct point {int x, y;}
    리포트 | 3페이지 | 1,500원 | 등록일 2022.05.21 | 수정일 2022.05.24
  • C언어정리 아홉번째(구조체)
    {struct point p1;struct point p2;};int main(void){struct rect r; //r이라는 도형int xdiff, ydiff; //이건 정수형double ... -p가 가리키는 주소s에 있는 값을 가져온다.struct student s = { 20070001,"홍길동", 4.3 }; //초기 값을 넣어준 것이다.struct student * ... -struct date{int year;int month;int day;};struct student{int number; //s1.numberchar name[10]; //s1.name
    리포트 | 23페이지 | 1,000원 | 등록일 2021.01.04
  • 자료구조 실습 코드 자료
    ListNode {float coef;int expo;struct ListNode* link;}ListNode;typedef struct ListHead {ListNode* head ... sm워드 (행렬) 3-5#pragma oncetypedef struct{int row;int col;int value;}term;void smTranspose(term a[], term ... data;struct stackNode* link;}stackNode;stackNode* top;//스택의 top 노드를 지정하기 위해 포인터 top 선언int isStackEmpty
    리포트 | 12페이지 | 1,000원 | 등록일 2023.10.12
  • 학생의 성적 입력하고 합계, 평균(C언어)
    #include#define stu_MAX 2 //학생수 변경 가능#define sub_MAX 2 //과목수 변경 가능struct grade{int number[8];char name ... [20];int sub[3];int total;float avg;};int main(void){int i, j;int sum;float avg;struct grade str[stu_MAX ... ,&str[i].sub[j]);sum += str[i].sub[j];}str[i].total = sum;avg = (float)sum/sub_MAX;str[i].avg = avg;}
    리포트 | 2페이지 | 1,000원 | 등록일 2023.09.23
  • 유니스터디 이벤트
AI 챗봇
2024년 09월 27일 금요일
AI 챗봇
안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
4:32 오후
문서 초안을 생성해주는 EasyAI
안녕하세요. 해피캠퍼스의 방대한 자료 중에서 선별하여 당신만의 초안을 만들어주는 EasyAI 입니다.
저는 아래와 같이 작업을 도와드립니다.
- 주제만 입력하면 목차부터 본문내용까지 자동 생성해 드립니다.
- 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
9월 1일에 베타기간 중 사용 가능한 무료 코인 10개를 지급해 드립니다. 지금 바로 체험해 보세요.
이런 주제들을 입력해 보세요.
- 유아에게 적합한 문학작품의 기준과 특성
- 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
- 작별인사 독후감
방송통신대학 관련 적절한 예)
- 국내의 사물인터넷 상용화 사례를 찾아보고, 앞으로 기업에 사물인터넷이 어떤 영향을 미칠지 기술하시오
5글자 이하 주제 부적절한 예)
- 정형외과, 아동학대