GeekInterview.com
  I am new, Sign me up!
 

Pointer Questions and Answers


 Sponsored Links

 
 Pointer Questions and Answers - Page 7
Sorting Options :  

A void pointer is a C convention for “a raw address.” The compiler has no idea what type of object a void Pointer “really points to.” If you write int *ip; ip points to an int. 
Void Pointer or Generic Pointer is the one to which any datatype can be assigned.eg.main(){    int *p;     void *vp;     vp=p;} ...
Category: C   Tags : Pointer

Is it better to use a pointer to navigate an array of values,or is it better to use a subscripted array name?
It’s easier for a C compiler to generate good code for pointers than for subscripts.   
Category: C   Tags : Pointer

 A pointer value is a data object that refers to a memory location. Each memory locaion is numbered in the memory.The number attached to a    memory location is called the address 
Hi,int *ptr=123;so ptr is pointer varible. suppose the adress of ptr is 2002( Assume) AT this mem-locn: value 123 is saved.to access address use & operatorto access value at the address use * opertator. ...
Category: C   Tags : Pointer

  A pointer variable is a variable that may contain the address of another variable or any valid address in the memory. 
pointervariable  is a  variable that can hold the address of variable and it is act as a array and  adavantage of pointer varialble is to change the  values in the prgroam in anywhere for  example programvoid main(){int a=10,b=20 ...
Category: C   Tags : Pointer

Pointer variable are initialized by one of the following two waysØ                  Static memory allocation 
Hope this may be the possible answer.#include#define MAX 5int main(){    int p[] = {1,2,3,4,5};//Static initialization    int *q = NULL;    int i;    for(i=0;i
Category: C   Tags : Pointer

For accessing a VSAM cluster sequentially, STARTBR, READNEXT, ENDBR commands are used. Suppose the VSAM cluster is sorted on the basis of a field (lets say age) and using STARTBR pointer is positioned on the record with name 'brijesh'. By using READNEXT that record is read. Now if i again use READNEXT, next record will be read(which could be the record with name other than 'brijesh'). If I want to read the next record with the same name (i.e. brijesh), whether RESETBR will be
Read Answers (1) | Asked by : Brijesh
Category: VSAM   Tags : Pointer

Hi, Do the following steps,To add a pointer (PTR) resource record to a reverse zone------------------------------------------------------------------------------------1- Open DNS. 2- In the console tree, click the applicable reverse lookup zone. (DNS ...
Category: 070-216   Tags : Pointer

One qn about pointer to funciton :how will a pointer to a pointer to a function will be declaredvoid *(*ptr[]));void *ptr[];void (**ptr[]
Category: Programming   Tags : Pointer

Base class has some virtual method and derived class has a method with the same name. If we initialize the base class pointer with derived object,.calling of that virtual method will result in which method being called?  a. Base method b. Derived method..
B 
Category: C Plus Plus   Tags : Pointer

Which of the following is not true in case of command line arguments?A. The argc parameter is used to hold the number of arguments in the command line and is an integerB. The argv parameter is a pointer to an array of a character pointer and each one points to command line argumentsC. The argv[1] always point to program nameD. None of above
C 
Category: SQL   Tags : Pointer

View page << Previous 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