what is pointer?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / manoj singh
pointer is a just like a simple veriable as hold down the
address of another veriable.
it's value denoted by *.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / vijaya
By default functions are extern, so it is visible from the outer files. If it is as static then it is in invisible from the outer files.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sridhar
Pointers are the variables,which are used to store address of the another variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What does do in c?
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
What is unary operator?
wap in c to accept n number display the highest and lowest value
Write a code on reverse string and its complexity.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What are dangling pointers? How are dangling pointers different from memory leaks?
Explain what is operator promotion?
How to find a missed value, if you want to store 100 values in a 99 sized array?