profile
안녕하세요! 개발공부를 하고 있습니다. 감사히 배우겠습니다. ;)
post-thumbnail

[ft_printf] Final : Bonus part

🔮 - 함수와 마찬가지로, str 문자열안에 cxXdiup%에 해당하는 문자를 프린트한다. 파라미터가 인 이유는 문자열를 로 부터 받기 위해 문자열을 가리키는 포인터를 사용했다. - 학교 norm에 맞추기 위해서, 원래는 생성하지 않았던 함수 인데, norm에 맞추기 위해 생성하였다. 파라미터로 를 넣으므로써, 문자 하나 하나를 읽을때마다 그에 해당하...

2021년 8월 14일
·
0개의 댓글
·
post-thumbnail

[ft_printf] Final : Mandatory part

🔮 - 문자열에 csxXidup% 해당되는 문자가 있으면, 해당 값을 프린트 하는 함수 - 과제에서 요구한 ft_printf() 최종 함수 🔮 - 문자열 str에서 d와 i를 발견하면, 해당 문자값을 프린트함 - 문자열 str에서 u를 발견하면, 해당 문자값을 프린트함 - putnbr를 사용하여, 16 진수를 표현하도록 하였다. - 문자열 st...

2021년 8월 14일
·
0개의 댓글
·
post-thumbnail

[JavaScript] functions

🔮 What is a functions? Functions are one of the fundamental building blocks in JavaScript. A function is a set of statements that performs a particular task of the program. This task could be just ...

2021년 8월 9일
·
0개의 댓글
·
post-thumbnail

[JavaScript] Loops and iterations

Using a loop simply means : Repeat this code until some condition is true 🔮 > ### The while loop in JS the condition : once the condition is , the loop will end; the * code to execute* : the purpos...

2021년 8월 9일
·
0개의 댓글
·
post-thumbnail

[JavaScript] Conditional statement

Conditional statement 🔮 statement The statement is executed when the statement condition is false. 🔮 The statement To be able to chain multiple conditions, we usestatements. The statement is e...

2021년 8월 9일
·
0개의 댓글
·
post-thumbnail

[ft_print] Printf_Mandatory 함수 구현 과정

Ft_printf 함수 구현 과정 함수 안에서 를 찾는 즉시, 해당되는 type 형태에 따라 해당 값을 출력한다. (먼저, 모든 type값을 출력하는 하나의 함수를 만든 후, optimize 필요 여부에 따라 함수들을 쪼개는 형식으로 진행 했다.) 과제에서 주어진 를 사용하기 위해서, type에 따라 출력되는 함수에 를 거의 적용하였다. : 문자열의 포인...

2021년 8월 4일
·
0개의 댓글
·
post-thumbnail

[ft_print] Makefile 과 컴파일

ft_printf 과제의 경우 을 이용해 정적 라이브러리 파일을 만들고, 라이브러리 파일과 함께 파일을 컴파일해야 한다. Makefile ft_printf에서는 libft함수를 포함하여 사용 할 수 있어, 기존의생성방법과는 약간 다르다. Makefile안에, 의 make 파일과 그 경로를 불러오는 코드를 적어야 한다. : 이런 식으로, 을 사용하여...

2021년 7월 28일
·
0개의 댓글
·
post-thumbnail

[JavaScript] Boolean

What is a ? Boolean is a type of data that can have two different values: true or false. Do you like cat? YES Do you like beer? NO Comparison operators Logical operators : , , and Truthy and Fals...

2021년 7월 28일
·
0개의 댓글
·
post-thumbnail

[JavaScript] String

Introduction > A string in any programming language is simply a sequence of characters between quotes. A can be a letter, number, punctuation, or even new lines and tabs. It just needs to be between...

2021년 7월 27일
·
0개의 댓글
·
post-thumbnail

[JavaScript] Numbers

2021년 7월 27일
·
0개의 댓글
·
post-thumbnail

[Exam_rang02] Inter

💡 Inter Subject 이해 Inter은 을 제외한 첫번째 argument와 두번째 argument 안에서 확인되는 같은 글자를 출력한다. 첫번째 argument와 두번째 argument에서의 중복되는 글자는 무시한다. (예시: , ) 💡Inter 함

2021년 7월 24일
·
0개의 댓글
·
post-thumbnail

[Exam_rang02] Union

Ecole42에 입학한 이후에 처음으로 시험을 치게 되는데, 시험 대비를 하면서 코딩 과정을 정리해보았다. 참고로, 시험을 칠 때는 norminette을 생각하지 않아도 된다. Union Subject 이해 Union은, 을 제외한 첫번째 argument의 글자를

2021년 7월 22일
·
0개의 댓글
·
post-thumbnail

[ft_printf] 가변인자 ( variadic functions)

💡 가변인자 (Variadic Functions) 가변인자라는 개념이 생소하여, printf과제를 할때 생긴 첫 의문점은 "ft_printf 과제를 수행하는데, 가변인자가 무엇인지, 그리고 가변인자를 왜 알아야 하는가?" 이었다. printf 함수는 인자를 1개만 넣어도 작동하고, 2개를 넣어도 작동하고, 3개,4개 혹은 그 이상을 넣어도 잘만...

2021년 7월 21일
·
0개의 댓글
·
post-thumbnail

[ft_printf] subject와 printf 함수 이해

💡printf 함수란 ? printf 함수의 원형 printf 첫번째 입력 매개변수 printf 두번째 입력 매개변수 : 가변인자. printf는 매개변수의 개수가 정해지지 않는다. 즉 여러개의 인자를 넣어도 함수가 작동한다. ❗️❗️❗️ printf 반환값은 : 다 ❗️❗️❗️ printf 출력 방식 printf의 첫번째 인자: 어떤 형태로...

2021년 7월 19일
·
0개의 댓글
·
post-thumbnail

[JavaScript] Variables

What is a variable? Let's start with an example from real life. You decided to pack all your stuff into different boxes and place them into some storage. You put labels on each box so you can easier ...

2021년 7월 19일
·
0개의 댓글
·
post-thumbnail

[JavaScript] Introduction and syntax

What is JavaScript? JavaScript is an object oriented and dynamic programming language created in 1995. In the frontend, JavaScript is what adds the interactivity and allows you to create a variety of...

2021년 7월 19일
·
0개의 댓글
·

[Born2beroot] Main references

Main references Born2beroot 과제를 실천하면서 하기 사이트들애서 도움을 많이 받았습니다. 1. Debian 설치 appti 님이 하나 하나 스크립 캡쳐를 해주셔서 debian 과 vm설치에 도움을 많이 받았습니다. https://velog.i

2021년 7월 14일
·
0개의 댓글
·

[Born2beroot] Peer to peer evaluation

Project Overview 1. What is Virtual Machine (VM)? 실재하는 컴퓨터 상에 소프트웨어로 논리적으로 만들어낸 컴퓨터 하나의 물리자원(컴퓨터)위에 하나의 환경(OS)만 있는것을 효율화하고자 가상화 층을 만들고 그 위에 OS를 새로 설치

2021년 7월 8일
·
0개의 댓글
·

[Born2beroot] Linux

Linux Linux란 무엇인가 쉽게 말하자면, 윈도우와 같은 하나의 독자적인 컴퓨터 운영체제(OS)이다. (OS란, 컴퓨터의 하드웨어와 소프트웨어를 제어하여, 사용자가 컴퓨터를 쓸 수 있게 만들어주는 프로그램을 말한다.) 리눅스는 공개 소프트웨어라서 그룹이나 회사등에서 커널소스 (kernel: 하드웨어 자원을 효율적으로 관리하기 위한 요소)를 받아 ...

2021년 7월 7일
·
0개의 댓글
·

[born2beroot] Bonus part_ Wordpress

Born2beroot bonus part > #Bonuspart subject : Set up a functional Wordpress website with the following services : lighttpd, MariaDB and PHP. Set up a service of your choice that you think is useful (...

2021년 7월 7일
·
0개의 댓글
·