Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of lastbreath

lastbreath

lastbreath has asked 0 questions and find answers to 1 problems.

Stats

19
EtPoint
5
Vote count
0
questions
1
answers

About

#include "lastbreath"

struct Details{
    string Hobbies[2];
    string Interests[3];
    string Languages[3];
} myDetails;

int main(){
    myDetails.Hobbies   = { "Art", "VideoGames" };
    myDetails.Interests = { "Computer graphics", "Compilers", "Gamedev" };
    myDetails.Languages = { "C", "C++", "Python" };
}

// Currently i am working on a Gameboy emulator
// Repo : https://github.com/ani1998ket/GameBoy_emulator