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 2c dna?
What is string concatenation in c?
What does #pragma once mean?
Which is better pointer or array?
Why can't I perform arithmetic on a void* pointer?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What is pass by value in c?
How do we declare variables in c?
What is a substring in c?
Why are all header files not declared in every c program?
What is scope of variable in c?
What is the basic structure of c?
What is the size of structure pointer in c?
What is structure in c explain with example?