https://github.com/jsexpertcoder/jsexpertcoder
https://github.com/jsexpertcoder/jsexpertcoder
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jsexpertcoder/jsexpertcoder
- Owner: JsExpertCoder
- Created: 2024-02-16T23:09:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-07-02T18:15:01.000Z (6 months ago)
- Last Synced: 2025-07-02T19:26:23.522Z (6 months ago)
- Size: 48.8 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### 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 am currently taking the Common Core (42-cursus) at School 42
## This is me as a code
```c
#include
#include
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
















## These are my Github´s stats



## Contact
[](https://www.linkedin.com/in/misterjs/)
[](mailto:misterjs247000@gmail.com)