Define function ?Explain about arguments?
Answers were Sorted based on User's Feedback
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 |
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 |
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
wat is the meaning of c?
What are structure members?
what is op? for(c=0;c=1000;c++) printf("%c",c);
What is difference between %d and %i in c?
What is conio h in c?
Write a function in c to find the area of a triangle whose length of three sides is given.
How do you determine a file’s attributes?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Is it better to use a macro or a function?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
How many types of operator or there in c?