answersLogoWhite

0

Example:

puts ("I've just called function 'puts'");

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Which keyword is used to make function call faster in c?

Inline Function


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.


Call by function in c language?

I guess you meant the following:'In C language, when you call a function,the parameters are passed by-value.'


A c plus plus statement that invokes a function is known as?

...a function call.


How you write a c program for making a call in gcc?

int main() { // Call the printf function printf("This is a function call!\n"); return 0; }


What do you call an object function in c plus plus?

method


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.


When will you make a function inline in c plus plus?

yes,we can make function inline


What is the use of function in c?

using function we can call the function in the program any where. by using functions we can reduce the code redundancy


What function that call themselves are called to c programme?

Functions in C language may call themselves (ie can be recursive) without restrictions.


How do you add two numbers with out using operator in c language?

Not possible. Of course you can call a function which does the addition for you, but function-calling is also an operator in C.


Which operator require to call c function using object name?

The operator required to call c function using object name is function object. Other operator names that deal with objects are structure dereference, structure reference, and indirection