Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how can i create a clss in gdbonline

+1 vote
asked Aug 15, 2019 by Yakov Barros (130 points)

3 Answers

0 votes
answered Aug 20, 2019 by SWEngineer
As far as I know, onlinegb is just a bit of "wiring" around g++ and gdb. Any proper C11 construct should work here as it works in g++.
0 votes
answered Aug 20, 2019 by SWEngineer (300 points)
Just as you do in any C++ program:

class Name

{

string firstname;

string lastname;

public:

  void print()

 {

   cout << firstname << " " << lastname << endl;

}

};
0 votes
answered Aug 20, 2019 by SWEngineer (300 points)
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...