#include <stdio.h>
#include <stdbool.h>
typedef struct s_prox {
char *name;
char *school;
char *passions[4];
bool always_learning;
} t_prox;
void introduce(t_prox me)
{
int i;
i = 0;
printf("π Hi, I'm %s, a student at %s.\n", me.name, me.school);
printf("π Passions:\n");
while (me.passions[i])
{
printf(" - %s\n", me.passions[i]);
i++;
}
if (me.always_learning)
printf("π Always curious and learning something new!\n");
}
int main(void)
{
t_prox me = {
.name = "prox",
.school = "42 Luxembourg",
.passions = {"Linux", "Cybersecurity (OSINT, web, reverse)", "C programming", "Python/Bash scripting", NULL},
.always_learning = true
};
introduce(me);
printf("\nπ― My goal: Keep pushing my limits and mastering cybersecurity.\n");
return 0;
}
Working.
OSINT enthusiast & InfoSEC enjoyer.
Student @ 42 Luxembourg.
- Luxembourg / France
Popular repositories Loading
-
searchloupe
searchloupe PublicSearchLoupe lets you perform a single search and get results from different search engines.
-
instacheck
instacheck PublicA simple tool to check if an email is associated with an Instagram account. Useful for OSINT and verifying account existence. π΅οΈββοΈβ¨
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.