Skip to content

JsExpertCoder/jsExpertCoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 

Repository files navigation

Hi, I'm Fábio

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 completed the 42 School Piscine

This is me as a code

#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);
}

These are the languages and tools I've studied so far

C C++ Shell Git Github Docker NGINX PHP TypeScript Laravel Tailwind-css ReactJs HTML5 React Native Linux Markdown

These are my Github´s stats

JsExpertCoder

 JsExpertCoder

JsExpertCoder

Contact

Linkedin Badge Gmail Badge

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published