#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;
}-
Notifications
You must be signed in to change notification settings - Fork 0
DevGonzi/devgonzi
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published