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 |
i want to make a program in which we use input having four digits(4321) and get output its reciprocal(1234).
What is volatile variable how do you declare it?
hat is a pointer?
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)
What is the difference between #include and #include 'file' ?
What are nested functions in c?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
can we change the default calling convention in c if yes than how.........?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
what is a c-language.what is do.
write a program to generate 1st n fibonacci prime number
what is difference between overriding and overloading?