Difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is assignment operator?
what is c language.
write a c program for greatest of three numbers without using if statment
Which is the best website to learn c programming?
What is the real difference between arrays and pointers?
27 Answers Hexaware, Logic Pro, TCS,
How to declare a variable?
how 2 compile & execute c program with out using editor?
list the no of files created when c source file is compiled
what r callback function?
how can we use static and extern?and where can we use this?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }