Can you please explain the difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
Write a programe print the sum of series 0,1,2,.....10
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
can we execute the program with the object file
What is the basic structure of c?
Compare array data type to pointer data type
c program to manipulate x=1+3+5+...+n using recursion
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
Program to find the sum of digits of a given number until the sum becomes a single digit
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
What is a constant and types of constants in c?
How do you convert strings to numbers in C?
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?