answersLogoWhite

0

What is a function definition in c?

User Avatar

Anonymous

14y ago
Updated: 8/19/2019

Example:

int main (void)

{ puts ("Here is a function definition"); return 0; }

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is the smallest number of formal parameters that can be included in a function definition in C?

You can have a function with no parameters.


What is header function definition in c language?

No predefined 'header' function in the standard C libraries. There are header files, if that's what you mean.


What are its program components?

the main() function,the#include Directive, the variable definition. function prototype, program statements, the function definition,program comments and braces are the components of program in C++


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 function can be nested in c?

A function can call other functions (or itself), but a function-definition cannot be nested in another function-definition: int main (void) { void wont_compile (void) { puts ("Won't compile"); } wont_compile (); return 0; }


What is the user defined function section in C language?

There are no 'sections' in C source, you can define functions anywhere, except inside another function or variable/type definition.


Definition of quadratic function?

A quadratic function is a function that can be expressed in the form f(x) = ax^2 + bx + c, where a, b, and c are constants and a is not equal to 0. This function represents a parabolic shape when graphed.


What is the definition of non recursive in c?

non recursive function is excuted faster than recrussive


What is put pixel?

The putpixel function is a specific function that is used in C++ programming. This command function is supposed to do point plotting via color definition of its specific points.


What is meant by arguments in c?

Arguments appear in functions and in function calls. Arguments passed to a function are known as actual arguments. The arguments used by the function are known as the formal arguments. In C, all arguments are passed by value, such that the formal argument is a copy of the actual argument.


Which library file contain the definition of stdioh and conioh header file function definition in C language?

Platform dependent, possibly LIBC.LIB or something like that.


What is the definition of continuity in calculus?

A function f is continuous at c if:f(c) is defined.lim "as x approaches c" f(x) exists.lim "as x approaches c" f(x) = f(c).