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 ...
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
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
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 ...
One qn about pointer to funciton :how will a pointer to a pointer to a function will be declaredvoid *(*ptr[]));void *ptr[];void (**ptr[]
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
What does the following statement mean?int (*a)[4]A. 'a' is a pointer to an array of 4 integersB. 'a' is an array of pointers to integerC. 'a' is a pointer to function returning an integer
A
*(*(*(*(a+i)+j)+k)+l) ...
NULL pointer is pointer which is not pointing to anything in the memory. NULL is defined as (void*)0.Uninitialised pointer is pointing to some memory location but the pointer values are not assigned.Malloc returns the memory address, but the contents ...
NULL is a macro which contains the value 0 (on most implementations). this is the one used to initialize a pointer to NULL ...
View page << Previous 3 4 5 6 [7] 8 9 10 11 Next >>

Go Top