answersLogoWhite

0


Best Answer

An asterisk in C++, such as int *data, is what's known as a pointer. A pointer is like a regular variable, but instead of holding a value, a pointer holds the memory location of the value.

It's a somewhat difficult concept, and you can learn more about it here:

See related links section below...

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the concept of asterisk in c plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is concept in c which is not in c plus plus?

No such thing.


How do you output multiple 's on a single line in c plus plus programming language?

its supposed to have an asterisk there before the 's but it wouldnt print it


Is there a file concept in c plus plus?

No. The standard does not define nor require a file concept.


How do you make the password character in Microsoft visual basic c plus plus?

The password character is usually an asterisk. ASCII code 42 (hex:2a).


How do you write a program to make a cross asterisk in c plus plus?

#include <iostream> int main() { printf( " *\n***\n *\n" ); return( 0 ); } Output: *****


Defference between c plus plus and c?

these are difference in between c and c++: a) C is a SPL and C++ is a OOP. b) C has not concept of object but C++ has this feature. c) C has not 'class' name data type but C++ has.


Do you have pointer concept in c plus plus language?

Yes. All string variables are pointers as are other arrays.


How do you hide input password in c?

Do not echo the keystrokes, output an asterisk instead.


Why c plus plus called as paritial oop?

C++ is only partially OOP because it is a superset of C and, for the sake of backward compatibility, retains the concept of primitive data types (such as integrals like char and int) and pointer data types, which are all strictly non-object-oriented. In Java and C#, there is no concept of a primitive data type. Even integral types such as int are treated as objects and there is no concept of a pointer data type.


What are the wildcard characters in C?

The wildcard characters in C programming include the asterisk (*) and the question mark (?). An asterisk stands for any missing number of characters in a string while a question mark represents exactly one missing character.


Which symbols represent the wildcard characters in Access?

The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.The asterisk * character.


How do you write a program to make asterisk isosceles triangle using for loop in c plus plus?

* ** *** **** simply use dis... { int x,y; for(x=1;x<=4;x++) { for(y=1;y<=x;y++) printf("*"); printf("\n"); } }