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 |
How will you delete a node in DLL?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
write a program for fibonaci series by using while loop in c?
Explain what is dynamic data structure?
In header files whether functions are declared or defined?
Why does everyone say not to use scanf? What should I use instead?
Give me basis knowledge of c , c++...
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
write a program wch produces its own source code aas its output?
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
print a "hello" word without using printf n puts in c language