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 |
What is difference between structure and union?
write a program to fined second smallest and largest element in a given series of elements (without sorting)
wat s the meaning of (int *)p +4;
List the difference between a While & Do While loops?
write a program to insert an element at the specified position in the given array in c language
Where register variables are stored in c?
what is dangling pointer?
Explain #pragma statements.
where does malloc() function get the memory?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
Why header files are used?
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3