# 42Seoul
FT_SERVER
Subject 문제 이해하기 Docker를 설치한 모든 컴퓨터에서 한번에 wordpress를 띄울 수 있어야 한다. os debian:buster web-server nginx dbms mysql CGI기능을 쓰기위한 프로그램(후
[1 Circle] Get next line
get next line 함수를 호출하면 파일 디스크립터에서 사용할 수 있는 텍스트를 EOF가 올 때까지 한 번에 한 줄씩 읽을 수 있게 함수 작성파일을 개행(newline)을 기준으로 한 줄씩 읽게 만드는 함수를 만드는 문제get_netx_line_utils.c 에

miniRT
Raytracing in Oneweekend(https://raytracing.github.io/books/RayTracingInOneWeekend.html

[1 Circle] netwhat
IP 주소란?컴퓨터 네트워크에서 장치들이 서로 인식하고 통신하기 위해 사용하는 주소IPv4 (32bit) - 일반적으로 사용하는 IP주소 (0.0.0.0 ~ 255.255.255.255)IPv6 (128bit) - IPv4의 고갈로 크기를 128bit로 늘린 IP주소루

get_next_line
Objectives > int get\next\line(int fd, char \line)** Calling the function in a loop will read the text available on a file descriptor one line at a

ft_printf
int ft_printf(const char \*, ...)Without buffer managementcspdiuxX%flags will be only contain -0.\* When you want to have function which can take vari

ft_printf %cspc처리
type %,c,s는 처리가 그렇게 어렵지 않아, 넘어가도록 한다.p옵션은 들어온 포인터 변수의 주소를 16진수로 변환시켜 보여주는 타입이다. 이를 처리하기 위해 매개변수로 받은 가변인자를 long long자료형으로 변환시켜 사용한다. 사실상 방법은 그렇게 어렵지 않다