Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

#define f(x) main() { printf("\n%d",f(2+2)); }

5 Answers  


What is linear search?

0 Answers  


Explain what math functions are available for integers? For floating point?

0 Answers  


What are the different data types in C?

0 Answers  


how can i print "hello"

3 Answers  






How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 Answers  


What is extern storage class in c?

0 Answers  


How can variables be characterized?

0 Answers  


Can we include one C program into another C program if yes how?

7 Answers   Infosys,


Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.

1 Answers  


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

0 Answers  


A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none

0 Answers  


Categories