카페검색 본문
카페글 본문
-
[Rpi C 실습 26] 구구단 FND 표시 2024.11.20해당카페글 미리보기
int old_cnt16 = 1234; void fnd_dis4(unsigned int data); char d_buf[20]; int loop = 0; // Prj Lib char tx_flag = 0; struct TIMER { int t_loop; char sec; char min; char hour; int time_sum; int old_sum; char tg_flag; // init data run }tim...
-
기본서 모의고사 5회 3번 질문드립니다. 2024.08.12해당카페글 미리보기
3. &cpu[2].b - &cpu[1].a 의 값은 cpu 1개의 크기가 4이기 때문에 4인가요? 4. &cpu[2].b - &cpu[1]의 값은 구할 수 있나요? 5. union대신 struct라면 &cpu[2] - &cpu[1] 의 값도 1인가요? 6. union대신 struct라면 &cpu[2].b - &cpu[1].a 의 값은...
-
PDB 아카이브 2024.05.07해당카페글 미리보기
검색할 수 있도록 당화(glycosylation) 주석이 제공되었습니다. 총 45,000개의 당화 부위가 7,500개 이상의 PDB 구조에서 _struct_conn.pdbx_role에 주석을 달아 모든 당화 부위와 이러한 부위에 결합된 단당류를 식별했습니다. 주석은 당화 부위, 단당류...
-
원형 연결리스트 2024.04.28해당카페글 미리보기
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 #include <stdio.h> #include <stdlib.h> typedef int element; typedef struct { element data; ListNode* link; }ListNode; ListNode* insert_first(ListNode* head, element data) { ListNode...
-
선생님 자료구조 모의고사 문제 질문드립니다. 2024.04.01해당카페글 미리보기
7회 실전모의고사 중.. 23번 80보다 큰 노드수 세는 문제인데요 typedef struct { int data; node *next; }node; int count_node(node *list) { int count = 0; for( [ ]) if(list->data > 80) count++; return count; } for문에 들어갈 적절한 코드에서...
-
Jeremiah 26 2024.02.25해당카페글 미리보기
to Egypt. along with some other men. They brought Uriah out of Egypt and took him to King Jehoiakim, who had him struct down with a sword and his body thrown into the burial place of tjhe comman people.) Furthermore, Ahikam son of...
-
Python 파이썬언어 기초과정 2024.02.20해당카페글 미리보기
처리 하기 - 클래스와 객체 - 초기화(init) - 클래스와 인스턴스 변수의 차이점 - 상속 - 다중 상속 - 스레딩 - 단어 빈도 카운터 - Zip - 람다 - 딕셔너리 Max, Min, Sorting - 이미지 자르기 - 이미지 합치기 - Struct - Map - 비트 연산자 - 딕셔너리 계산
-
[ARM 실습 3] UART-1 폴링방식 송수신, 문자열 비교, cnt 2024.01.11해당카페글 미리보기
USER CODE BEGIN PTD */ //uint16_t t_loop = 0; //uint8_t cnt = 0; //int8_t time_flag = 0; struct FLAG_F { char time_flag; }Flag = {0}; struct CNT { int t_loop; uint8_t cnt; }Cnt...
-
C언어로 로또 총합 구하기! 2024.01.15해당카페글 미리보기
int seedOption) { if (seedOption == 0) { // 1. 밀리 초 단위로 현재 시간을 구한다. // 2. 현재 시간을 시드로 사용한다. struct timespec ts; clock_gettime(CLOCK_REALTIME, &ts); srand(ts.tv_nsec); } else if (seedOption == 1) { // 1. 초 단위로...
-
memcpy를 이용한 struct의 복사방법 2004.08.02해당카페글 미리보기
struct _temp_{ int pid; char lid[4]; struct _tem1 tem1; struct -tem2 tem2; }temp; 라는 struct Data에서 struct _tem1 { int len; char *value; }tem1; struct _tem2{ int len; char name*; char add* }tem2; 로 이루어진 데이타 구조에서요 선언은...