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 |
What is stream in oop?
write a progra in c++ using class & object to find out wheather a given no. is prim or not.
What does and I oop mean in text?
What is class encapsulation?
What is oops concept with example?
write a code for this. serial_number contained in the header of the file will be read , if this serial number is less than a previous serial number within a successfully processed file, or is the same as another serial number within a successfully processed file, or if the field contains anything other than 7 digits, then the file must error with the reason ‘Invalid SERIAL_NUMBER’.
what type of question are asked in thoughtworks pair programming round ?
What are the main differences between procedure oriented languages and object oriented languages?
9 Answers IBM, Infosys, Wipro,
What is polymorphism what are the different types of polymorphism?
What is function overloading?,describe it with the example.
What is a linked list?
What do you mean by multiple inheritance and multilevel inheritance? Differentiate between them.