Difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
Why we use void main in c?
program for comparing 2 strings without strcmp()
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What is the difference between fread buffer() and fwrite buffer()?
When should a type cast be used?
Why we use stdio h in c?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What are the preprocessors?
write a programe to find the factorial of given number using recursion
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
Why ordinary variable store only one value