all about pointers
Answers were Sorted based on User's Feedback
Answer / ps
Pointers are variables which hold the address of other
variables.
int i = 10;
int *a = &i;
i = 20;
where a will store the address of variable i and *a will
have the value of i.
There are different types of pointers in C++:
Null pointers
Void pointers
Wild pointers
this pointers
| Is This Answer Correct ? | 3 Yes | 0 No |
Write a C++ program to conduct an election of a mayor.Declare a class ELECTION With the following specification: Data member: Name 25 character Age Integer symbol 1 character Member functions: To accept data for 20 contestant To accept symbol as voting from 100 voters. To declare the winner and the loser.
1 Answers Global Academy, Infotech,
State what is encapsulation and friend function?
ambiguity regulation of multiple inheritance with example.
What is a function in oop?
hi all..i want to know oops concepts clearly can any1 explain??
can we create and enter the data & hide files using programmes ?
What is the difference between class and structure?
What are the components of marker interface?
inheritence with example
Generally, in all C++ programs, texts are in white colour. Can we change the colour of the text(either input or output or both)? If so, help me out.
what is diff between .net 1.1 and .net 2.0
what does exactly the linker do?