answersLogoWhite

0

Yes

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the difference between function and recursive function?

I will explain in the easiest way the difference between the function and recursive function in C language. Simple Answer is argument of the function is differ but in the recursive function it is same:) Explanation: Function int function(int,int)// function declaration main() { int n; ...... ...... n=function(a,b); } int function(int c,int d) { ...... ...... ...... } recursive Function: int recursive(int,int)// recursive Function declaration main() { int n; ..... ..... ..... ..... n=recursive(a,b); } int recursive(int a,int b) { ..... .... .... .... } Carefully see, In the recursive Function the function arguments are same.


What is the definition of non recursive in c?

non recursive function is excuted faster than recrussive


Is macro a recursive function?

If you're asking if the c preprocessor supports recursive macros, the answer is no. The preprocessor is single-pass and since the "function" must be defined before it can be referenced, it can not be recursive.


Why you use main function in c?

Because if you donot use main function in c program, the compiler willnot execute the program.C compiler starts execution from main function itself.


Main function in c?

The main function defines the entry point of an application in C.


What function that call themselves are called to c programme?

Functions in C language may call themselves (ie can be recursive) without restrictions.


What is the use of return in function in c?

To return the exp. or const to the main fumction.


Who is calling main function in c?

in c main function initailly called by operating system.


What is main function used in c?

if you do not used main function in c program when errors are accrued


What is self referential function in c plus plus?

A self-referential function in C++, or in any other supporting language, is a recursive function.


What is the use of return function in C programming?

To return the exp. or const to the main fumction.


What must every c program have?

A main function must be present in every C program.