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 |
What are pointers? What are different types of pointers?
Write a program to find minimum between three no.s whithout using comparison operator.
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
whitch value return void main?
Table of Sudoku n*n
Explain what is the heap?
How many levels of pointers have?
What are reserved words with a programming language?
c program to manipulate x=1!+2!+3!+...+n! using recursion
Write a program to exchange two variaables without temp
What is c mainly used for?
Explain how can you avoid including a header more than once?