What is the difference between memcpy and memmove?
No Answer is Posted For this Question
Be the First to Post Answer
what is a stack
differentiate between const char *a; char *const a; and char const *a;
2 Answers College School Exams Tests, HCL, TCS,
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is the difference between Printf(..) and sprint(...) ?
how i m write c program 1.check prime number 2.prime number series
what do the 'c' and 'v' in argc and argv stand for?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
Why do we use static in c?
what is the main use of c where it can use the c
List the different types of c tokens?
Does sprintf put null character?