What are the different types of pointers?
Answer Posted / 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 |
Post New Answer View All Answers
What are near, far and huge pointers?
What are different types of variables in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
List out few of the applications that make use of Multilinked Structures?
What are disadvantages of C language.
How many types of sorting are there in c?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Do you know what are bitwise shift operators in c programming?
Ow can I insert or delete a line (or record) in the middle of a file?
What is the purpose of & in scanf?
Is javascript written in c?
What are examples of structures?
Why does this code crash?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is data structure in c and its types?