answersLogoWhite

0


Best Answer

strcat (into, from); correct.

into (strcat, from); incorrect.

strcat (from, from); incorrect.

....

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the correct call to the library function strcat?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is difference function prototype and function define in turbo c?

In C, a function prototype is a declaration to the compiler that a certain function exists, without a full definition. This allows other functions to call that function. The linker will later make sure that a function definition actually exists (perhaps somewhere else), and will turn the call to the function to a call to the correct function.


What is difference between wait and sleep and delay in C plus plus?

It depends on the particular library implementation. It is not a C++ specific question. As far as C++ is concerned, it is just a function call, just like a call to printf or even exit is a function call. One could be a call to wait for an event. One could be a call to sleep for a specified period of time. One could be a call to burn CPU cycles for a specified period of time. Again, it all depends on the library implementation, and you need to read the documentation for your library to answer this one.


What is the difference between system call and library function call?

On one level, there is no difference. They are both function calls. The only difference is in what they do. System calls do something the user program cannot do; something having to do with system resources: memory, files, devices, network, terminals, processes etc. However, system calls are usually implemented by library function calls because, at the root of the matter, a C or C++ program can only invoke function calls to call upon the operating system to do things.


Which function call Does not consume stack space?

Calling an in-line function, which is not actually a function-call.


Difference between user defined function or standard c library?

satandard fuction is pre define fuction like getch(),clrscr(), in c++ and userdefine fuction is self created by use to do a particular work ex of use definefuction int add(int a,int b) { int c; c=a+b; return(c); };

Related questions

Is it possible to call library function recursiviely?

No, once you call a library (or any) function, you have to wait until it has returned.Of course the function may call itself, but you do not know or care of that.


How can you call a function written in FORTRAN from a C program?

Is the FORTRAN function part of a library. If it is it will be no different from call a c function in a library. There could be an issue the order that the functions attribures are pusshed onto the stack like there is with pascal.


Why is it not possible to call library function recursively?

Your question makes no sense.


What is the following set of Library of Congress call numbers is in correct order?

WHAT numbers.


What is difference function prototype and function define in turbo c?

In C, a function prototype is a declaration to the compiler that a certain function exists, without a full definition. This allows other functions to call that function. The linker will later make sure that a function definition actually exists (perhaps somewhere else), and will turn the call to the function to a call to the correct function.


How do you call an external function or program that is written in different programming language?

It doesn't matter what language the external program or function was written in since all executables must be converted to machine code. To execute an external function, that function must reside in a library to which your program is linked and you must know the prototype of the function you intend to call. This is usually found in the library header file which can simply be included in your program. You can then call the external function just as you would an internal function. To execute a specific function in another program, however, you must use the command line interface for that program.


How do you call a function in GUI in matlab?

Just type it in the command line. That will call functions, scripts, load data (that are in the correct directory).


What is difference between wait and sleep and delay in C plus plus?

It depends on the particular library implementation. It is not a C++ specific question. As far as C++ is concerned, it is just a function call, just like a call to printf or even exit is a function call. One could be a call to wait for an event. One could be a call to sleep for a specified period of time. One could be a call to burn CPU cycles for a specified period of time. Again, it all depends on the library implementation, and you need to read the documentation for your library to answer this one.


What is the difference between system call and library function call?

On one level, there is no difference. They are both function calls. The only difference is in what they do. System calls do something the user program cannot do; something having to do with system resources: memory, files, devices, network, terminals, processes etc. However, system calls are usually implemented by library function calls because, at the root of the matter, a C or C++ program can only invoke function calls to call upon the operating system to do things.


Is it possible to call library function recursively?

There are 2 types of library functions.One system defined & another user defined.In system defined functions we can not determine whether a library function is recursive or not.It may or may not be recursive.But in user defined library functions for example factorial() can be made recursive.No matters whether it is a library function.So if you understand recursion properly then this question makes no sense.


Can you use a municipal ID card to borrow books from the public library?

Some municipalities have designed their municipal IDs to function as library cards. Such is the case in New York City.This depends on the policy of the public library in question. Since you didn't specify which one you mean, we have no idea. You should call the public library and ask them.


Why printf is known as call by value?

C language uses only one method for parameter-passing: call by value.