#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;
}
Popular repositories Loading
-
uMod-Build
uMod-Build PublicBuild, spawn, plant, upgrade, deploy anything the way that you want it
-
-
-
-
-
altv-hub
altv-hub PublicForked from tastydev/altv-hub
alt:V Hub is a reference point to post your resources for other users to explore. Simply create a pull request with a folder for your github username and a json file with your resource information.
JavaScript
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.


