코딩Coding/코딩기초상식_필수지식
-
Zsh was originally written by Paul Falstad(폴 팔스타드zsh 개발자z셸_개발자)코딩Coding/코딩기초상식_필수지식 2022. 3. 14. 17:05
Zsh was originally written by Paul Falstad https://zsh.sourceforge.io/Doc/Release/Introduction.html#Author zsh: 2 Introduction 2 Introduction Zsh is a UNIX command interpreter (shell) usable as an interactive login shell and as a shell script command processor. Of the standard shells, zsh most closely resembles ksh but includes many enhancements. It does not provide compatibility zsh.sourceforge..
-
Why IPV4 address is 32 bit & IPV6 is 128 bit?코딩Coding/코딩기초상식_필수지식 2022. 2. 28. 13:13
https://www.quora.com/Why-IPV4-address-is-32-bit-IPV6-is-128-bit Why IPV4 address is 32 bit & IPV6 is 128 bit? Answer (1 of 6): IPv4 chose 32 bit because it was the biggest register found in any common processors at the time. It was an arbitrary choice that seemed good enough at the time. When IPv4 was originally devised we all believed it was sufficiently large en www.quora.com
-
-
매개변수(Parameter)코딩Coding/코딩기초상식_필수지식 2022. 2. 23. 17:53
https://webit22.tistory.com/37 매개변수 (Parameter) 매개변수 (parameter) : 메서드 괄호 안에 정의되고, 프로시저에 data를 넘겨 코드를 호출하는 역할. class MyClass { //클래스 생성 ... string strPara = ""; getSQL(strPara); // strPara = "인자"라 부름 } pu.. webit22.tistory.com 다른 글 보기 Parameter 와 Argument 차이 argument와 parameter 차이점 - https://economiceco.tistory.com/m/4386 argument와 parameter 차이점 argument와 parameter 차이점 taewan.kim/tip/argument_pa..
-
0x01에서 0x의 의미와 2, 16진수 사용 이유코딩Coding/코딩기초상식_필수지식 2022. 2. 21. 17:35
http://webs.co.kr/index.php?mid=Programming&document_srl=3320312Program - 0x01에서 0x의 의미와 2, 16진수 사용이유Visual C/C++에서 16비트 표현은 0x 로 합니다. 0xA024 는 16진수이죠. 이것은 표기상의 모양만 다를뿐 숫자의 크기 값은 같습니다. 즉 10진수로 12랑 16진수로 0x0C랑 같습니다. 그럼 왜 16진수 표기를 자주webs.co.kr 데이터 표현 (2진수, 8진수, 10진수, 16진수)[부호가 없는 정수(unsigned)] - https://akohongbigcenter.tistory.com/m/490 데이터 표현 (2진수, 8진수, 10진수, 16진수)[부호가 없는 정수(unsigned)]데이터 표현 (2진..