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

Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

0 Answers  


hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..

0 Answers  


struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]

3 Answers  


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

0 Answers  


main() { int i=5; printf("%d%d%d%d",i++,i--,i); }

10 Answers  






What is optimization in c?

0 Answers  


What is a good data structure to use for storing lines of text?

0 Answers  


c language interview questions & answer

0 Answers  


What are pointers in C? Give an example where to illustrate their significance.

0 Answers   Wipro,


Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors

3 Answers  


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

0 Answers  


What are the disadvantages of c language?

0 Answers  


Categories