How do pointers work?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the first name of c++?

0 Answers  


What is the use of pointer in c++ with example?

0 Answers  


How many storage classes are available in C++?

1 Answers  


What is namespace std; and what is consists of?

0 Answers  


Describe about storage allocation and scope of global, extern, static, local and register variables?

0 Answers  






What is the precedence when there is a global variable and a local variable in the program with the same name?

0 Answers  


What is endl c++?

0 Answers  


Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?

6 Answers   CSC,


Which bit wise operator is suitable for checking whether a particular bit is on or off?

0 Answers  


Can you sort a set c++?

0 Answers  


If there are two catch statements, one for base and one for derived, which should come first?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


Categories