Recent posts

211125_class

less than 1 minute read

Stack 후위법(posfit) :연산자를 뒤로 보내는 방법 90/(2*3)+(20-10) -> ?? 90 2 3 * / 20 10 - + push(), pop() 스택 사이즈 10개 int top = -1; void push(int* array, int num){ ...

211124_class

less than 1 minute read

+IPD,포트,개수:데이터 indexOf(‘:’) + 1 -> 데이터 위치 읽기 substring 문자열 자르기 문자열.trim() // 앞 뒤 공백 제거

211123_class

1 minute read

Micro Controller MCU : Micro Controller Unit MCU = CPU + Memory Compile - 변역 Fusing - Download RAM(휘발성) - 변수 ROM(비휘발성) - 코드

Queue

less than 1 minute read

Queue