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
write a program to find out prime number using sieve case?
What’s a signal? Explain what do I use signals for?
What is the code in while loop that returns the output of given code?
How the c program is executed?
#include
How can you restore a redirected standard stream?
What is variable initialization and why is it important?
what is ur strangth & weekness
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
write a program to generate address labels using structures?
write a program to copy the string using switch case?
What is the significance of an algorithm to C programming?
Explain how can I open a file so that other programs can update it at the same time?
Do you know what are the properties of union in c?
What are reserved words?