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 |
Are bit fields portable?
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
why programming language C is still used in operating system's kernel??
How would you rename a function in C?
what is the difference between getch() and getche()?
Give the rules for variable declaration?
What is malloc calloc and realloc in c?
How can I delete a file?
which one low Priority in c? a)=,b)++,c)==,d)+
Tell us bitwise shift operators?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Write a program in c to print * * * * * *******