I'm a Software Engineer. My specialty is developing Android and iOS Mobile Apps with React Native.
I also have knowledge in Backend development with Laravel.
🔭 I’m currently working at Tecnologias Arnaldo
📚 I completed the 42 School Piscine
#include <unistd.h>
#include <stdlib.h>
void ft_strcpy(char *dest, char *src)
{
while (*src)
*dest++ = *src++;
*dest = 0;
}
int main(void)
{
char *str;
int slogan_size;
slogan_size = 20;
str = (char *)malloc(sizeof(char) * (slogan_size + 1));
if (!str)
{
write(1, "Memory allocation failed\n", 25);
exit(0);
}
ft_strcpy(str, "I will never give up");
write(1, str, slogan_size);
free(str);
return (0);
}