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 is malloc calloc and realloc in c?
Where we use clrscr in c?
What is the description for syntax errors?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is file in c language?
What is the difference between typedef and #define?
given post order,in order construct the corresponding binary tree
FILE PROGRAMMING
What are keywords c?
Explain bitwise shift operators?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Is flag a keyword in c?
What is meant by initialization and how we initialize a variable?
What is calloc()?
What are variables and it what way is it different from constants?