What are the different types of pointers?

Answers were Sorted based on User's Feedback



What are the different types of pointers?..

Answer / newakash.89

far,near and huge

Is This Answer Correct ?    24 Yes 6 No

What are the different types of pointers?..

Answer / raj.s

Null pointer and wild pointer.

Null pointer :A null pointer has a reserved value, often
but not necessarily the value zero, indicating that it
refers to no object.

Wild pointer : Wild pointers are pointers that have not
been initialized and may make a program crash or behave
oddly.

Is This Answer Correct ?    1 Yes 0 No

What are the different types of pointers?..

Answer / mar

generic pointers and non generic pointers

Is This Answer Correct ?    0 Yes 0 No

What are the different types of pointers?..

Answer / gagan kataria

pointers, which point to the location

Is This Answer Correct ?    1 Yes 18 No

Post New Answer

More C Interview Questions

Explain what is the benefit of using const for declaring constants?

0 Answers  


In which area global, external variables are stored?

3 Answers  


What are the types of variables in c?

0 Answers  


Hai why 'c' is the middle language

4 Answers  


What is a structure and why it is used?

0 Answers   Hexaware,


How can I return multiple values from a function?

6 Answers  


what does static variable mean?

0 Answers   TCS,


24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?

2 Answers  


Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]

2 Answers  


Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.

4 Answers   Persistent, Subex,


how to count no of words,characters,lines in a paragraph.

0 Answers  


what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it

5 Answers   DIT,


Categories