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

Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.

0 Answers  


Is c is a high level language?

0 Answers  


WHAT IS PRE POSSESSORS?

6 Answers   TATA,


what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }

3 Answers  


What is the use of parallelize in spark?

0 Answers  






Which of these functions is safer to use : fgets(), gets()? Why?

0 Answers  


read a number & print all its devisors using c-program?

3 Answers  


Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.

0 Answers  


Write a program to print the prime numbers from 1 to 100?

7 Answers  


6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none

0 Answers  


what is a c-language.what is do.

4 Answers   HCL,


Categories