Define function ?Explain about arguments?
Answer Posted / 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 View All Answers
Explain the process of converting a Tree into a Binary Tree.
Explain how can you tell whether a program was compiled using c versus c++?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is a pointer variable in c language?
What does do in c?
What are the various types of control structures in programming?
Is it valid to address one element beyond the end of an array?
What are enums in c?
What is the usage of the pointer in c?
Explain what is the benefit of using enum to declare a constant?
If the size of int data type is two bytes, what is the range of signed int data type?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
When should we use pointers in a c program?
What is the difference between single charater constant and string constant?
Explain setjmp()?