What are the different types of pointers?
Answers were Sorted based on User's Feedback
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 |
write a program to display the numbers having digit 9 in the given range from 1 to 100
How do you redirect a standard stream?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
Where is volatile variable stored?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
Code for calculating square root without using library function, of math.h
what is C?
What is wrong with this initialization?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
why do we use pointer instead directly acessing the data?
Explain what is the stack?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none