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 are data structures in c and how to use them?
What does #pragma once mean?
Explain the use of fflush() function?
while initialization of array why we use a[][2] why not a[2][]...?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What is the default value of local and global variables in c?
What is an auto keyword in c?
How can my program discover the complete pathname to the executable from which it was invoked?
What is #include conio h?
What is sizeof c?
What is array within structure?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
List the difference between a While & Do While loops?
Why is c fast?
Why do we write return 0 in c?