1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
42-1st-piscine/ended/C02-corr/ex09/ft_strcapitalize.c
2023-08-06 20:12:38 +02:00

7 lines
158 B
C

#include <stdio.h>
int main(void)
{
char str[250] = "salut, comment tu vas ? 42mots quarante-deux; cinqUante+et+un";
printf("%s", ft_strcapitalize(str));
}