define function
Answers were Sorted based on User's Feedback
Answer / desh deepak
A Function is a self-contained block of statement that
perform a Coherent task of some kind. c program is
collection of function.
generel form of function.
function(arg1,arg2,arg3)
type arg1,arg2,arg3;
{
statement1;
statement2;
statement3;
statement4;
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sugumar
Functions let us create logical groupings of code
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nirmal super star
a fns. is set of instructions that perform a specifide task
which repeatedly occurs in main prgm. .
| Is This Answer Correct ? | 2 Yes | 0 No |
a function is a block of code or a logic by using some
methods that to be executed.
| Is This Answer Correct ? | 2 Yes | 0 No |
What is void main () in c?
Do you know what is the purpose of 'extern' keyword in a function declaration?
What is meaning of tree
c program to manipulate x=1!+2!+3!+...+n! using recursion
write a program to print sum of each row of a 2D array.
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Write a program for finding factorial of a number.
What is abstract data structure in c?
who will call your main function in c under linux?
What are the types of operators in c?
Why do we use null pointer?
What is openmp in c?