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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
how can i create a clss in gdbonline
+1
vote
asked
Aug 15, 2019
by
Yakov Barros
(
130
points)
Please
log in
or register to answer this question.
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++.
Please
log in
or register to add a comment.
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;
}
};
Please
log in
or register to add a comment.
0
votes
answered
Aug 20, 2019
by
SWEngineer
(
300
points)
See
https://onlinegdb.com/S1v6LUtEH
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...