#include #define STR "hello world" int main(void) { char s1[] = STR; printf("%s\n", s1); printf("%s\n", ft_strupcase(s1)); return (0); }