Define function ?Explain about arguments?

Answers were Sorted based on User's Feedback



Define function ?Explain about arguments?..

Answer / cguru

A function is a procedure to solve a given task.

Arguments are parameters which are specified in the function
header.

Is This Answer Correct ?    12 Yes 3 No

Define function ?Explain about arguments?..

Answer / prashant

Function means to do something within one procedure
everything is predefine in function.
Arguments means what we want to pass while calling that
function.

Is This Answer Correct ?    5 Yes 3 No

Post New Answer

More C Interview Questions

Tell me what is null pointer in c?

0 Answers  


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

3 Answers  


How can I split up a string into whitespace-separated fields?

0 Answers  


Disadvantages of C language.

0 Answers   Impetus,


Write a program to generate prime factors of a given integer?

9 Answers   Microsoft,






write a program to find lcm and hcf of two numbers??

1 Answers  


const char * char * const What is the differnce between the above tow?.

6 Answers   Ramco, TCS,


what are bitwise shift operators?

4 Answers  


Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms

5 Answers   Convex Digital,


what is stack , heap ,code segment,and data segment

0 Answers  


main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


What is the difference between GETS();AND SCANF();

4 Answers   TCS,


Categories