what is pointer?

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


Please Help Members By Posting Answers For Below Questions

Which one would you prefer - a macro or a function?

590


Write a program with dynamically allocation of variable.

593


Define VARIABLE?

677


What are the c keywords?

736


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

3242






How many types of functions are there in c?

576


What are disadvantages of C language.

634


What is sizeof int?

625


Explain union. What are its advantages?

608


What is union and structure?

561


Which type of language is c?

637


Which is better pointer or array?

587


What is difference between Structure and Unions?

628


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

623


Define recursion in c.

690