Chat with our AI personalities
"Basic" means the bottom-line, the bare necessities, the essential starting point. "Functions" are how something works. So a basic function is the essential way that something works. For example, the basic function of the lungs is to collect oxygen and release carbon dioxide, although we use our lungs for other things such as making noises and blowing up balloons!
The function is Sqr() in VB6 and Math.Sqr() in .NET.
Basic Metabolic panel is a set of blood tests that measures your sugar (glucose) level, kidney function and the fluid balance.
We can access a Friend function from any other class in which friend function is introduced or declared even if the other class is not a member of first class. But when we use normal member function, we can have its access only in the derived classes of the first class. This is the basic difference between a friend function and a normal member function.
Basic structure of a C program is /* Documentation section */ /* Link section */ /* Definition section */ /* Global declaretion section */ /* Function section */ (return type) (function name) (arguments...) void main() { Declaration part Executable part (statements) } /* Sub-program section */ (return type) (function name 1) (arguments...) (return type) (function name 2) (arguments...) . . . (return type) (function name n) (arguments...) Basic structure of a C program is /* Documentation section */ /* Link section */ /* Definition section */ /* Global declaretion section */ /* Function section */ (return type) (function name) (arguments...) void main() { Declaration part Executable part (statements) } /* Sub-program section */ (return type) (function name 1) (arguments...) (return type) (function name 2) (arguments...) . . . (return type) (function name n) (arguments...)