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
Why array is used in c?
What is the difference between exit() and _exit() function?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What are categories used for in c?
Write a program to use switch statement.
How does #define work?
Is null always defined as 0(zero)?
What is dynamic memory allocation?
Which is better between malloc and calloc?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Explain the use of function toupper() with and example code?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
What are loops c?
How are pointers declared in c?
For what purpose null pointer used?