Answer Posted / ankush tyagi
Pointers are a special type of variables which are used to
store the address of the another variable....
Four type of pointers are defined...
1.Near pointer
2.Fare pointer
3.Huge pointer
4.File pointer
Syntex //-
data type var_name;
data type *pointer_name;
pointer_name=&var_name;
in both the case data type should be same other wise we can
use the type casting;;;....
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the scope of global variable in c?
What is console in c language?
What are the functions to open and close file in c language?
difference between Low, Middle, High Level languages in c ?
Define the scope of static variables.
Which is better between malloc and calloc?
What is the use of the function in c?
What are all different types of pointers in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Describe the difference between = and == symbols in c programming?
Why is not a pointer null after calling free?
What is the mean of function?
What is void main ()?
What is the purpose of clrscr () printf () and getch ()?
What are the difference between a free-standing and a hosted environment?