Define function ?Explain about arguments?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Who invented b language?

902


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2208


Are c and c++ the same?

619


What is clrscr in c?

662


Are the outer parentheses in return statements really optional?

566






What is the difference between array and pointer in c?

566


What is hash table in c?

558


Is there a way to switch on strings?

607


How is a null pointer different from a dangling pointer?

546


Does c have an equivalent to pascals with statement?

561


What is the value of h?

579


Explain how do you view the path?

640


program for reversing a selected line word by word when multiple lines are given without using strrev

1934


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5166


How can a number be converted to a string?

586