What is memmove?
Answer / rekha
"memmove" can safely handle the situation where the source
string overlaps the destination string
an example
ptr = memmove( s1, s2, N );
"memmove" copies exactly N characters from the string "s2"
into the area of memory pointed to by "s1". Unlike the
function "strncpy", "memmove" does not check for the
terminating '\0' of string "s2"; it simply copies N
characters. It does not put a terminating '\0' on the end of
string "s1".
| Is This Answer Correct ? | 8 Yes | 0 No |
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
Explain why can’t constant values be used to define an array’s initial size?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Explain high-order bytes.
What are function pointers? Provide an example.
What is advantage of pointer in c?
What is calloc in c?
Is double link list a linear data structure? If Yes, Why?If No, Why?
What is dynamic variable in c?
What is 02d in c?
WRITE A PROGRAM TO FIND A REVERSE OF TWO NO
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1