Computer Science, asked by dibyajyotipradhan61, 10 months ago

How to define a function ??​

Answers

Answered by vikramsingh27
3

Answer:

a relation from a set of inputs to a set of possible outputs where each input is related to exactly one output

Answered by anushka33244
1

hey mate!

here is ur ans....

in English meaning or definition of function:-

(1) the purpose or special duty of a person or thing

(2) an important event, ceremony etc

>> the meaninof function in coding

A function is a group of statements that together perform a task. Every C program has at least one function, which is main(), and all the most trivial programs can define additional functions.

A function is a group of statements that together perform a task. Every C program has at least one function, which is main(), and all the most trivial programs can define additional functions.You can divide up your code into separate functions. How you divide up your code among different functions is up to you, but logically the division is such that each function performs a specific task.

A function is a group of statements that together perform a task. Every C program has at least one function, which is main(), and all the most trivial programs can define additional functions.You can divide up your code into separate functions. How you divide up your code among different functions is up to you, but logically the division is such that each function performs a specific task.A function declaration tells the compiler about a function's name, return type, and parameters. A function definition provides the actual body of the function.

A function is a group of statements that together perform a task. Every C program has at least one function, which is main(), and all the most trivial programs can define additional functions.You can divide up your code into separate functions. How you divide up your code among different functions is up to you, but logically the division is such that each function performs a specific task.A function declaration tells the compiler about a function's name, return type, and parameters. A function definition provides the actual body of the function.The C standard library provides numerous built-in functions that your program can call. For example, strcat() to concatenate two strings, memcpy() to copy one memory location to another location, and many more functions.

A function is a group of statements that together perform a task. Every C program has at least one function, which is main(), and all the most trivial programs can define additional functions.You can divide up your code into separate functions. How you divide up your code among different functions is up to you, but logically the division is such that each function performs a specific task.A function declaration tells the compiler about a function's name, return type, and parameters. A function definition provides the actual body of the function.The C standard library provides numerous built-in functions that your program can call. For example, strcat() to concatenate two strings, memcpy() to copy one memory location to another location, and many more functions.A function can also be referred as a method or a sub-routine or a procedure, etc.

>>meaning of function in maths sub

A technical definition of a function is: a relation from a set of inputs to a set of possible outputs where each input is related to exactly one output. We can write the statement that f is a function from X to Y using the function notation f:X→Y. ..

hope it helps

Similar questions