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
Explain how do you determine a file’s attributes?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
When should the const modifier be used?
What are the basic data types associated with c?
Write a program to reverse a string.
Which is better malloc or calloc?
What does nil mean in c?
What is the difference between union and anonymous union?
What is the difference between new and malloc functions?
What is stack in c?
What is const volatile variable in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is scope rule of function in c?
What is "Duff's Device"?