Pwnwithlove ♥ | The Moon | Member
CTF Player of the FlagPoisoning Team and French Student.
French Student | 🇫🇷
CTF player, cybersecurity lover & linux user
http://pwniiivfkt3cc3i655mdi25mny5ostietzouaytdznhvreofaw6gvpad.onion/
˚ ₊⠀⠀ ᘏ⑅ᘏ ₊ ✩
。˚ ✩ ૮꒰˵• ᵜ •˵꒱ა 。 ˚
Social :
-
: pwnwithlove#1984
#include <stdio.h>
#include <stdbool.h>
char *name[] = {"use linux","do cybersec", "programmation", "and make electronics"};
int ft_tablen(char *tab[])
{
int len = 0;
while(tab[len])
len++;
return(len);
}
int main(void)
{
int i = 0;
bool being_skilled = false;
printf("No skills, I'm learning with the help of my lovely friends ♥\n");
bool pharma = false;
printf("I ♥ to ");
while(i < (ft_tablen(name) - 1))
{
printf("%s, ", name[i]);
i++;
}
printf("%s.\n", name[i]);
return(0);
}