Answer Posted / 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 |
Post New Answer View All Answers
can we have joblib in a proc ?
What are the Advantages of using macro
what is stack , heap ,code segment,and data segment
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Explain can you assign a different address to an array tag?
c program to compute AREA under integral
Explain how do you search data in a data file using random access method?
How can I remove the trailing spaces from a string?
How to Throw some light on the splay trees?
What is typedef struct in c?
Is it better to use a macro or a function?
How can I swap two values without using a temporary?
What does emoji p mean?
What is structure padding and packing in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list