answersLogoWhite

0

I don't use that function in C programme.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is a statement in c language programme?

Any experssion including assignment or a function call can be a statement in C


Can you declare a function in the body of another function in c language?

yes, we can not declare a function in the body of another function. but if we declare a function in the body of another function then we can call that very function only in that particular function in which it is declared; and that declared function is not known to other functions present in your programme. So if a function is required in almost all functions of your programme so you must declare it outside the main function i.e in the beginning of your programme.


What function that call themselves are called to c programme?

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


What has the author A C Davies written?

A. C. Davies has written: 'The Unemployed Youth Programme' 'Effects of Hormones, Drugs and Chemicals of Testicular Function'


Can you use two main in C programme?

No. You can only have one main() function in a C or C++ program.Note:If this question means "Will the OS start two threads/processes if I have two public scope 'main' functions in my program?"then the answer is "No, even if you could link such program, which you cannot."


How do you write c programme to find proper subset of a given string?

you can use strstr()


Can you use main function as a recursive function in C?

Yes


How do you use getpass in C?

This function is obsolete. Do not use it.


Why it display function should return a value in c programme?

It is up to you to decide. You may go for 'void' return type, which means no return value.


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.


What scrabble words use f and c?

Function


Why you use 'integer' before function in C language?

To specify the return-type of the function.