answersLogoWhite

0


Best Answer

Nothing.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between pointers in c and c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between c plus plus and java programming?

Java doesn't have pointers. C++ has pointers.


Difference between array and pointers in c plus plus?

A pointer is simply a variable that can store a memory address and has the same purpose in both languages. The only real difference is that C++ pointers can point at objects (instances of a class) and indirectly invoke their methods, whereas pointers in C (which is not object oriented) cannot.


Difference between void and devoid in c plus plus?

There is no such thing as devoid in C++.


What is the difference between be plus ing and get plus ing?

There are no such terms in C++.


What is the Difference between arrays in c and c plus plus?

Nothing whatsoever. They are exactly the same.


Is there any difference between turbo c and c plus plus?

turbo c is a compiler and c++ is a programming language.


What is the difference between cc plus plus and c sharp?

C# is inherited from c++ with some additional features


What are the main differences between Java and C plus plus?

the difference is that c plus is better because you get big grades


Is it possibly to return an array of strings in a function without using pointers in C plus plus?

No.


What are the storage allocation in C plus plus?

They mostly deal with pointers and new operators in memory.


What is the difference between statements in c plus plus charconstp and char constp?

There is no difference. Both statements are invalid.


How do you write a reverse function in C plus plus without pointers?

You can either use references or you can simply return the result by value. Note that in C++, unlike C, references are not the same as pointers. C++ references are aliases, alternate names for existing objects, whereas pointers are just variables that may contain a memory address that can be dereferenced.