what is pointer?

Answer Posted / sridhar

Pointers are the variables,which are used to store address of the another variable.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is default value of global variable in c?

556


How can I make sure that my program is the only one accessing a file?

672


Can we declare function inside main?

560


Are local variables initialized to zero by default in c?

541


In which header file is the null macro defined?

845






If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402

3242


Which header file should you include if you are to develop a function which can accept variable number of arguments?

797


What is typedf?

662


What is the purpose of 'register' keyword?

683


What is the difference between union and structure in c?

566


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

660


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

587


int far *near * p; means

3111


Is main is a keyword in c?

602


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

681