카페검색 본문
카페글 본문
-
[ARM 실습 63] HC-SR04 초음파 센서 2025.02.26해당카페글 미리보기
Lib_V4_7.h" #define ARM_Mode 1 #define UART 2 extern int out_dev_set_mode; #include "My_MCU_Printf_Lib_V2_6.h" struct _CNT_ { uint16_t cnt16; int16_t t_loop; int8_t tx_cnt; }cp = {1234, 0, 0}; struct _CNT_ *cnt = &cp; struct _FLAG...
-
크루스칼 알고리즘 C코드 질문입니다. 2025.02.17해당카페글 미리보기
천인국 교수님의 C언어로 쉽게 풀어쓴 자료구조의 크루스칼 알고리즘 코드 중 일부인데요. struct Edge { // 간선을 나타내는 구조체 int start, end, weight; }; typedef struct GraphType { int n; // 간선의 개수 struct Edge edges[2 * MAX_VERTICES...
-
257_January 17th_Preluding Abortion restriction in New Mexico 2025.01.18해당카페글 미리보기
The New Mexico supreme court has struct down abortion restriction by two conservative cities and two counties at the request of the state attorney general. Attorneys representing the cities of Hobbs and Clovis and the counties of Lee...
-
파이썬언어 기초과정 평일반 2025.01.08해당카페글 미리보기
처리 하기 - 클래스와 객체 - 초기화(init) - 클래스와 인스턴스 변수의 차이점 - 상속 - 다중 상속 - 스레딩 - 단어 빈도 카운터 - Zip - 람다 - 딕셔너리 Max, Min, Sorting - 이미지 자르기 - 이미지 합치기 - Struct - Map - 비트 연산자 - 딕셔너리 계산
-
기본서 모의고사 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 의 값은...