What is the difference between memcpy and memmove?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to arrange the contents of a 1D array in ascending order
Explain the difference between getch() and getche() in c?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
What is the memory allocated by the following definition ? int (*x)();
How many levels deep can include files be nested?
What is the purpose of ftell?
Can main () be called recursively?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
What is the use of #include in c?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.