/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* test.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tomoron +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/02/04 17:30:08 by tomoron #+# #+# */ /* Updated: 2024/02/07 14:29:12 by tomoron ### ########.fr */ /* */ /* ************************************************************************** */ #include #include int main(int argc, char **argv) { int i = 0; while(i < argc) { printf("\"%s\"\n",argv[i]); i++; } return(0); }