Answer Posted / deena
to indicate the address of variable
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the process of writing the null pointer?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the use of c language in real life?
Write a program to print ASCII code for a given digit.
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What are structure members?
What is wrong in this statement? scanf(ā%dā,whatnumber);
What is a newline escape sequence?
Explain what are binary trees?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
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
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How can I recover the file name given an open stream or file descriptor?
What is a void * in c?
What is extern variable in c with example?