Answer Posted / gyanendra
Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does c in a circle mean?
How can a program be made to print the line number where an error occurs?
What is a newline escape sequence?
What is keyword in c?
What does a pointer variable always consist of?
What is array within structure?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
How do I read the arrow keys? What about function keys?
Explain how do you convert strings to numbers in c?
What is pointer & why it is used?
Why c is called a middle level language?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
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);