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
Does c have circular shift operators?
Why is c called c not d or e?
Why clrscr is used in c?
What is the difference between a function and a method in c?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
What is the advantage of an array over individual variables?
Explain what is dynamic data structure?
What is pointer & why it is used?
What is the size of enum in bytes?
Mention four important string handling functions in c languages .
What are the types of data files?
Why functions are used in c?
Difference between malloc() and calloc() function?
What is malloc() function?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.