what is pointer ?

Answer Posted / ramakant kisan karnekar

Pointer is a value variable it stores the address of
another variable
ex
int a=10;
int *p;
p=&x;

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can the sizeof operator be used to tell the size of an array passed to a function?

610


Here is a neat trick for checking whether two strings are equal

558


Explain how can I read and write comma-delimited text?

646


What is 2c dna?

598


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

1512






Is stack a keyword in c?

628


What is the difference between fread buffer() and fwrite buffer()?

665


What is gets() function?

663


What are the primitive data types in c?

563


Is c still relevant?

633


What is advantage of pointer in c?

683


What are the usage of pointer in c?

699


What is an array? What the different types of arrays in c?

649


What is getch?

624


how to count no of words,characters,lines in a paragraph.

3895