Skip to content
View DevGonzi's full-sized avatar

Block or report DevGonzi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
devgonzi/README.md
#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

  1. uMod-Build uMod-Build Public

    Build, spawn, plant, upgrade, deploy anything the way that you want it

    C# 3 3

  2. uMod-InfoPanel uMod-InfoPanel Public

    C# 2 1

  3. EspWeb EspWeb Public archive

    ESP Webserver Files

    CSS

  4. altv-docs altv-docs Public

    Forked from LeonMrBonnie/altv-docs

    PowerShell

  5. altv-types altv-types Public

    Forked from micaww/altv-types

  6. altv-hub altv-hub Public

    Forked 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