D0pp3lgang3r | The Hierophant | Member
Cybersecurity enthusiast | Player of the FlagPoisoning Team French Student 🇫🇷
I like to learn new stuffs, in I.T and especially in cybersecurity.
Social :
-
: Doppelganger#5878
#include <iostream>
#include <vector>
static void skills()
{
auto mySkills = std::vector<std::string>{"Programming", "OSINT", "Steganography"};
for (auto skill : mySkills)
std::cout << " - I have some knowledge about, " << skill << std::endl;
}
static void learning()
{
std::string myLearnings[] = {"Web", "Cryptography", "MISC"};
for (auto learning : myLearnings)
std::cout << " - I want to learn things about, " << learning << std::endl;
}
int main()
{
std::cout << "What I already know well :) \n" << std::endl;
skills();
std::cout << std::endl;
std::cout << "What I would like to learn :) \n" << std::endl;
learning();
return 0;
}