what is pointer?

Answer Posted / likhit gatagat

pointers in C are variables storing address of some another
memory variable/location to which they are pointing

e.g: int *p;
int s;
p=&s;

now if s has memory address 101 then p will be storing
this address i.e pointing to variable s

Is This Answer Correct ?    17 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I generate floating-point random numbers?

605


Define the scope of static variables.

604


What is string function in c?

538


can any one provide me the notes of data structure for ignou cs-62 paper

1704


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

674






How can I trap or ignore keyboard interrupts like control-c?

620


What does 2n 4c mean?

717


Is a pointer a kind of array?

601


typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none

716


Write a C program in Fibonacci series.

635


Do you know the use of fflush() function?

603


Do you know what are bitwise shift operators in c programming?

585


Is int a keyword in c?

555


In a byte, what is the maximum decimal number that you can accommodate?

626


Write a program to check palindrome number in c programming?

601