Learn C: Pointers

Topics: All about Pointers'

Browse all answers:

How pointer variables are initialized?
In C, why is the void pointer useful? When would you use it?
What is a void pointer?
What is a pointer variable?
What is a pointer value and address?
What is NULL pointer?
What is a pointer?
What are the uses of a pointer?
When should a far pointer be used?
What are the pointer declarations used in C?
How many levels of pointers can you have?
What is :- pointer , NULL pointer , dangling pointer , far pointer , near pointer , huge pointer , generic pointer , smart pointer ?
What is the difference between near pointer and far pointer?
What are the differences between malloc() and calloc()? 
What does it mean when a pointer is used in an if statement? 
When would you use a pointer to a function? 
Why should we assign NULL to the elements (pointer) after freeing them? 
How I can add two numbers in c language without using Arithmetic operators?
WRITE A C PROGRAMME TO FIND OUT THE AREA OF A CIRCLE USING POINTER.
How reliable are floating-point comparisons? 
What is a void pointer? 
Why should we assign NULL to the elements (pointer) after freeing them ?
How to operate pointers in any pragram & how to develop our logic while implementing pointer 
WRITE A C PROGRAMME TO PRINT THE FEBONACCI SERIES USING POINTER?AS:0,1,1,2,3,5,8,13,21........N 
Explain between a long pointer and a char pointer , which one consumes more memory?
Difference between ordinary variable and pointer in C? 
What is dangling pointer in c? 
What are the pointer declarations used in C?
Differentiate between a constant pointer and pointer to a constant?
Discuss on pointer arithmetic?
What is the invalid pointer arithmetic?
What are the advantages of using array of pointers to string instead of an array of strings?
What is a huge pointer?
What is a normalized pointer, how do we normalize a pointer?
what are pointers integer?
What is pointer to a pointer?
Can a Structure contain a Pointer to itself?
Declare an array of three function pointers where each function receives two integers and returns float.
 Can you add pointers together? Why would you? 
What is a huge pointer?
What is “this”s pointer?
What is generic pointer in C?
What will be the output of the program ? #include#includeint main(){    int i, n;    char *x="Alice";    n = strlen(x);    *x = x[n];    for(i=0; i<=n; i++)    {        printf("%s ", x);        x++;    }    printf("\n", x);    return 0;}
Point out the compile time error in the program given below.#includeint main(){    int *x;    *x=100;    return 0;}
Linked Lists -- Can you tell me how to check whether a linked list is circular?
The sizeof( ) function doesn’t return the size of the block of memory pointed to by a pointer. Why?
The sizeof( ) function doesn’t return the size of the block of memory pointed to by a pointer. Why?
What are FP_SEG And FP_OF ?
What does the error "Null Pointer Assignment" mean and what causes this error?
What are the advantages of using pointers in a program? 
What is the process of writing the null pointer?
Differentiate between ordinary variable and pointer in C.
How does normalization of huge pointer works?
What are the different types of pointers used in C language?
What is the difference between null pointer and wild pointer?
What is the function of dangling pointer?
What are pointers? Why are they used?
How to use realloc() to dynamically increase size of an already allocated array?
Declare an array of three function pointers where each function receives two integers andreturns float.
Explain the variable assignment in the declaration

int *(*p[10])(char *, char *);