answersLogoWhite

0

No. Functions should be defined separately. So you would not define a function within a function. You can define one function, and while defining another function, you can call the first function from its code.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is the user defined function section in C language?

There are no 'sections' in C source, you can define functions anywhere, except inside another function or variable/type definition.


Define the function of the preceding components in a network?

Define the function of the preceding components in a network?


How do find area triangle usibg functions?

You define a function with an return value. The return value would be the area of the triangle, and the parameters are the width/length and height of the triangle. Inside the function you would define how you would calculate the area, and then return the result.


How do you define a constant in PHP?

You can define a constant using the define() directive.you can use this a number of ways;to define a variable to a constant do:$string = "hello";define("string",$string);to define a string to a constant use:define("hello","there");to define a integer or other numerical value use:define("number",1.0);Summery:to define a string use quotes as you would do a string.Unlike variables in PHP a constant cannot be changed or undefined once it is defined. Constant remains automatically globally throughout the script. It means that it can be accessed from inside a function. e.g.


Explain the scope and visibility of variables in c plus plus function?

If you define a variable inside of your function, the variable can be referred and used only inside of that function. It means that you will not able to use the variable in another function (including main). Area of code where your variable can be used after declaration is usually called visibility of the variable.


Define finance function?

george way


Define string handling function?

Penis


How do you define power function without using operator?

using pow() function.. ..


Define parent function?

A parent function refers to the simplest function as regards sets of quadratic functions


Where is it possible to define a function in c?

yes you looser


Define formally Turing-Decidable Problem?

define function formally and using f(x) notation


What is the way by which you can make the user defined the size of the arrays?

By using the library function #define A[] we can define the size of arrays