i don know about class n pointers,can u explain it with essy examples please

Recommended Answers

All 3 Replies

Start out with something like this (it has good examples for you). Google any terms you don't know and when you have something you're stuck on, post back.

A class :

class Test{};

A pointer :

int *p = 0;

Combine them and you get a "class pointer" :

class Test{};  Test *p = 0;

i don know about class n pointers,can u explain it with essy examples please

You should learn about google (perhaps you could google it? AAAHHH recursion! ). There are so many simple c++ tutorials and examples THAT ALREADY EXISTS AND ARE 1 GOOGLE SEARCH AWAY. Please try to solve your own problem before you ask for help.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.