Declare a class "test" with a "foo()" public member function and declare a pointer "myPtr" to "test" and call "foo()" via the po | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Declare a class "test" with a "foo()" public member function and declare a pointer "myPtr" to "test" and call "foo()" via the po

Fill in the blanks to declare a class "test" with a "foo()" public member function. Declare a pointer "myPtr" to "test" and call "foo()" via the pointer. class test{ ___: void foo() { } {; ___myPtr=new test(); myPtr___foo();

18th May 2017, 4:41 PM
Jorge Luis
23 Answers
+ 1
Nikil, public test* -> Answered question
18th May 2017, 6:59 PM
Jorge Luis
0
How about trying the code in code playground and learning a bit from compiling?
18th May 2017, 4:46 PM
Mattias Eriksson
Mattias Eriksson - avatar
0
submit it as a quizz menu (three dots) quizz factory
18th May 2017, 5:04 PM
⏩▶Clau◀⏪
⏩▶Clau◀⏪ - avatar
0
Public test .
18th May 2017, 5:11 PM
NIKHIL MURARKA
0
Nikil, is not test, is test*, is no.
18th May 2017, 5:18 PM
Jorge Luis
0
Nikil, public test* -> Answered question
18th May 2017, 7:00 PM
Jorge Luis
0
public test* ->
13th Dec 2017, 10:14 AM
Hubert Kanyamahanga
Hubert Kanyamahanga - avatar
0
public test* ->
9th Mar 2018, 1:39 PM
Oybek Qodiraliyev
Oybek Qodiraliyev - avatar
0
class test{ public : void foo() { } }; test* myPtr = new test(); myPtr -> foo();
19th Mar 2018, 11:25 AM
Mahnoor Shahzad
Mahnoor Shahzad - avatar
0
class test{ public : void foo() { } }; test* myPtr = new test(); myPtr -> foo();
7th May 2018, 9:46 AM
abdiwahab jama said
abdiwahab jama said - avatar
0
class test{ public : void foo() { } }; test* myPtr = new test(); myPtr -> foo();
9th Jul 2018, 6:53 AM
Edgardo Tan Cruz
Edgardo Tan Cruz - avatar
0
Fill in the blanks to make ''foo'' a pure virtual function: void foo() 0; ansaer
8th Sep 2019, 12:59 PM
ROHIT KAPSE
ROHIT KAPSE - avatar
0
class test{ public : void foo() { } }; test* myPtr = new test(); myPtr -> foo();
27th Sep 2019, 6:16 PM
Shaima Alassil
Shaima Alassil - avatar
0
wow
5th Nov 2019, 8:06 PM
Nagham hussain
Nagham hussain - avatar
0
Public test* ->
11th Nov 2019, 5:36 PM
Syabdar
Syabdar - avatar
0
answer is public, test*, and ->.
15th Jan 2020, 10:30 AM
Imanuel Wicaksono
Imanuel Wicaksono - avatar
0
answer is public test* ->
22nd May 2020, 4:32 AM
LANKA ATRI DATTA RAVI TEZ
LANKA ATRI DATTA RAVI TEZ - avatar
0
fill in the blanks to declare a class "test" with a "foo()" public member function. declare a pointer "myptr" to "test" and call "foo()" via the pointer. ANSWER:- Public Test* ->
24th May 2020, 1:33 PM
Shailesh Kumar meena
Shailesh Kumar meena - avatar
0
the process of creating an object of a class is called: ANSWER:- Instantiation
26th May 2020, 7:34 PM
Shailesh Kumar meena
Shailesh Kumar meena - avatar
0
what are the three core languages in web pages? ANSWER:- CSS HTML JAVASCRIPT
27th May 2020, 5:19 PM
Shailesh Kumar meena
Shailesh Kumar meena - avatar