#include <iostream>
#include <string>
#include <vector>
struct strings {
std::string name;
std::string country;
std::string mainProgrammingLanguages;
};
int main(void) {
std::vector<strings> profile(10);
profile[0].name = "David";
profile[0].country = "Germany";
profile[0].mainProgrammingLanguages = "TypeScript";
std::cout << "My name is ";
std::cout << profile[0].name;
std::cout << ", I come from ";
std::cout << profile[0].country;
std::cout << " and my main programming language is ";
std::cout << profile[0].mainProgrammingLanguages;
std::cout << ". I also work with JavaScript, Node.js, SQL and C#.";
return 0;
}
DevGonzi
Follow
Popular repositories Loading
-
uMod-Build
uMod-Build PublicBuild, spawn, plant, upgrade, deploy anything the way that you want it
-
-
-
-
community-content
community-content PublicForked from hetzneronline/community-content
Hetzner Online Community Project
-
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.