define function

Answers were Sorted based on User's Feedback



define function..

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

define function..

Answer / sugumar

Functions let us create logical groupings of code

Is This Answer Correct ?    2 Yes 0 No

define function..

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

define function..

Answer / satya.tivari

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

Post New Answer

More C Interview Questions

Are bit fields portable?

0 Answers   EXL,


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

2 Answers   Mascot,


why programming language C is still used in operating system's kernel??

1 Answers   Wipro,


How would you rename a function in C?

0 Answers   Tech Mahindra,


what is the difference between getch() and getche()?

7 Answers   Infosys,


Give the rules for variable declaration?

0 Answers  


What is malloc calloc and realloc in c?

0 Answers  


How can I delete a file?

0 Answers  


which one low Priority in c? a)=,b)++,c)==,d)+

10 Answers  


Tell us bitwise shift operators?

0 Answers  


Find duplicates in a file containing 6 digit number (like uid) in O (n) time.

0 Answers   GrapeCity,


Write a program in c to print * * * * * *******

1 Answers  


Categories