for, while ,do whileがある#include <stdio.h> int main(void) { int a = 1; while (a < 4) // aが4未満の時、aを出力してaの値を1増やす { printf("a\n"); a++; } } a a a a++は糖衣構文といい、aを1増加させるという意味(使用する状況により異なるが、一般的に a += ...
split.c int main(void) { char **res; int i = 0; - res = ft_split_by_space("hello world from 42 tokyo"); + res = ft_split_by_space(strdup("hello world from 42 tokyo")); while (res[i]) { printf("[%s]\n", res[i]); i++; } return (0); } ...