Answer Posted / shekar
a pointer is a variable that stores the address of another
variable. we can a pointer to any variable ..
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
What is derived datatype in c?
What will the preprocessor do for a program?
How can I split up a string into whitespace-separated fields?
Why c is procedure oriented?
Is exit(status) truly equivalent to returning the same status from main?
Can you define which header file to include at compile time?
What is the scope of an external variable in c?
What does static variable mean in c?
Why do we write return 0 in c?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Differentiate between full, complete & perfect binary trees.
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How to compare array with pointer in c?
while initialization of array why we use a[][2] why not a[2][]...?
regarding pointers concept