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 |
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
write a proram to reverse the string using switch case?
wat is the difference between array and pointer?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
what is the need for main function in c?
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
Explain how do you list a file’s date and time?
How can I allocate arrays or structures bigger than 64K?
What is the explanation for cyclic nature of data types in c?
What is size of union in c?