Difference between strcpy() and memcpy() function?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the advantages of using macro in c language?
Which type of language is c?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
What is meant by keywords in c?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Can you please explain the difference between malloc() and calloc() function?
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
what is a function prototype?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets