Skip to content
View CSXV's full-sized avatar
PEAK
PEAK

Block or report CSXV

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
CSXV/README.md
#include <iostream>
using namespace std;

void signature() {
  cout << "\n┏┓╻┏━╸╻ ╻┏━╸┏━┓   ┏━┓┏━╸╺┳╸╺┳╸╻  ┏━╸"
          "\n┃┗┫┣╸ ┃┏┛┣╸ ┣┳┛   ┗━┓┣╸  ┃  ┃ ┃  ┣╸ "
          "\n╹ ╹┗━╸┗┛ ┗━╸╹┗╸   ┗━┛┗━╸ ╹  ╹ ┗━╸┗━╸";
}

struct stPersonInfo {
  string firstName;
  string lastName;
};

string readString(string message) {
  string stringToRead = "";

  cout << message;
  getline(cin, stringToRead);

  return stringToRead;
}

stPersonInfo readPersonInfo() {
  stPersonInfo personInfoToRead;

  personInfoToRead.firstName = readString("enter your first name: ");
  personInfoToRead.lastName = readString("enter your last name: ");

  return personInfoToRead;
}

void printString(string stringToPrint) { cout << stringToPrint << endl; }

void printGreeting(stPersonInfo personToPrint) {
  string greeting = "hello" + personToPrint.firstName + " " +
                    personToPrint.lastName +
                    "\nThis is my GitHub, feel free to get in touch!";

  printString(greeting);
}

int main() {
  printString("Wellcome user!");
  printGreeting(readPersonInfo());

  signature();
  return 0;
}

Pinned Loading

  1. FoucsFlow FoucsFlow Public

    a full-stack To-Do & Notes app with user accounts, categories, and a neumorphic UI, built using React, TypeScript, .NET Core API, and PostgreSQL.

    C#

  2. VelmoreCo VelmoreCo Public

    an eCommerce web page to sell high-end jewelries with interactive 3D models

    C#

  3. DVLD DVLD Public

    A full-stack desktop application system to manage driving and vehicle department. Made with Windows forms and SQL server

    C#

  4. WebGL-galaxy-generator WebGL-galaxy-generator Public

    Galaxy generator using Three.js and custom GLSL shader in WebGL

    JavaScript

  5. ThemeEngineDemo ThemeEngineDemo Public

    A demo for my google's material you theme engine library for windows forms in .NET framework

    C#

  6. MBL MBL Public

    a full-stack desktop application to manage and track user's own books. Made with Windows forms and SQL server

    C#