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

Do you know the use of 'auto' keyword?

0 Answers  


Is c pass by value or reference?

0 Answers  


Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10

8 Answers   Aspire,


Write a program with dynamically allocation of variable.

0 Answers   Atos Origin,


Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.

3 Answers   Google,






Write a program to reverse a given number in c language?

0 Answers  


What are the complete rules for header file searching?

0 Answers  


how to swap two nubers by using a function with pointers?

1 Answers  


How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;

2 Answers  


what r callback function?

1 Answers  


Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .

3 Answers   TCS,


how to find out the union of two character arrays?

2 Answers  


Categories