what is pointer?
Answers were Sorted based on User's Feedback
Answer / guest
a pointer is a a variable that contains the address of an
another variable
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / gyanendra
Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / j naveen reddy
Pointer is a reference variable, as it refers the address of the other variable
| Is This Answer Correct ? | 0 Yes | 0 No |
What is c basic?
how to find that no is int or float?
what is the difference between declaration ,defenetion and initialization of a variable?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is the method to save data in stack data structure type?
What does c mean?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
What are the different properties of variable number of arguments?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What is the most efficient way to count the number of bits which are set in a value?
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,