answersLogoWhite

0


Best Answer

I don't use that function in C programme.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you use this function in c programme?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 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'


What function that call themselves are called to c programme?

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


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


Explain you how you can impliment programme in c language without main function?

You can't. If you have no main function, then there is no entry point to your code and it cannot be executed. Code without a main function is essentially a library. In MS Windows, GUI mode, you don't have to have main function. (WinMain is used instead).