GeekInterview.com
  I am new, Sign me up!
 

Pointer Questions and Answers


 Sponsored Links

 
 Pointer Questions and Answers - Page 6
Sorting Options :  

Smart pointers are objects which store pointers to dynamically allocated (heap) objects. They behave much like built-in C++ pointers except that they automatically delete the object pointed to at the appropriate time. Smart pointers are particularly useful ...
Read Answers (2) | Asked by : satish
Category: C++   Tags : Pointer

Dangling pointer leads the memory leak problems. The following circumstances are memory leak ( dangling pointers ), not for good programming practice , try to avoid1) Try to avoid the empty object pointer creation2) Memory allocation without de allocation.3) ...
Read Answers (2) | Asked by : karibasi
Category: C++   Tags : Pointer

A dangling pointer is a pointer to storage that is no longer allocatedThese examples can further clarify the point { char *cp = NULL; /* ... */ { char c; cp = &c; } /* c falls out of scope */ /* cp is now a dangling ...
Category: C   Tags : Pointer

Use Of Far Pointer..........Each program has its own data and code segments which is allocated by the compiler.The normal pointer or near pointer can address locations which are in its data segment. far pointer is used to address locations which ...
Read Answers (2) | Asked by : Shahed Parvez
Category: C   Tags : Pointer

Explain about void pointer and it's real time usage in Business 
Pointer to void, or a void pointer, is a special type of pointer that has a great facility of pointing to any data type.Example:int i; float f; int* exf; float* test; then exf=&i;//Corerct-exf ...
Category: OOPS   Tags : Pointer

Advantages:* Increasing the programming performance , Using pointers we can able to access the variables faster* Dynamic memory management * Data structure handling (Linkedlist, Stack ,Queue, Data dictionary,....)* File management using FILE pointer ...
Category: C++   Tags : Pointer

What is function pointer in C program? 
Each pointer will point to a data type like integer, float etc., similar to these pointers we can also have some special pointers that point to the memory location of the functions and these pointers are named as function pointers ...
Category: C   Tags : Pointer

What is auto pointer ? What is the use of this ? 
Auto pointer is nothing but, Proper memory management ( memory Allocation and deallocation).In C++ there is class template "auto_ptr" this is good example for auto pointer. Only we need to allocate a memory using the "auto_ptr" class ...
Category: C++   Tags : Pointer

Move Method For Example  rsEmployee.Move 10 ...
Category: Visual Basic   Tags : Pointer

There are times when it’s necessary to have a pointer that doesn’t point to anything. The macro NULL, defined in , has a value that’s guaranteed to be different from any valid 
hi,   Null pointer:   When referring to computer memory, a null pointer is a command used to direct a software program or operating system to an empty location in the computer memory. Commonly, the null pointer is used to denote the ...
Category: C   Tags : Pointer

View page << Previous 2 3 4 5 [6] 7 8 9 10 11 Next  >>

Ask A Question
Go Top
 Sponsored Links

 
Expert Members
# User Name Count
1mathan_vel 408
2sudhakar2068 390
3srinivasulub1981 380
4sahu 323
5jainbrijesh 283
6sampra 278
7samiksc 231
8Sujatars 206
9Beena 194
10G.D.S.Prasad 191
Subscribe
Get Latest Updates Via RSS Reader or by Email
 Forum Discussion Subscribe to Forum Discussions Via E-Mail Latest Forum Discussions Subscribers
 Knowledge Base Subscribe to Knowledge Base Series Via E-Mail Knowledge Base Subscribers
 Learning Series Subscribe to GeekInterview Learning Series Via EMail Learning Series Subscribers
 Freelance Jobs Subscribe to GeekInterview Freelance Jobs Via EMail Latest Freelance Jobs Subscribers
 GeekInterview Blog Subscribe to GeekInterview Blog Via EMail GeekInterview Blog Subscribers
 Testing Interview Questions Subscribe to Testing Interview Questions Via EMail Testing Interview Questions Subscribers
 Oracle Interview Questions Subscribe to Oracle Interview Questions Via EMail Oracle Interview Questions Subscribers
 Java Interview Questions Subscribe to Java Interview Questions Via EMail Java Interview Questions Subscribers
 Latest Placement Papers Subscribe to Latest Placement Papers Placement Papers Subscribers
 Free Training Subscribe to Free Training Via EMail Free Training Subscribers
 Learn AJAX Subscribe to AJAXwith.com Via EMail AJAXwith Subscribers
Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape