answersLogoWhite

0

Why you use while function in c?

Updated: 8/20/2019
User Avatar

Wiki User

11y ago

Best Answer

It is a statement; you can create a loop with it:

while (<condition>) <statement>

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why you use while function in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you use this function in c programme?

I don't use that function in C programme.


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 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 is function overloading in c language of computer?

There is no such thing as function overloading in C; that is a feature of C++. Function overloading allows us to provide two or more implementations of the same function. Typically, we use function overloading so that the same function can cater for different types. For instance, we might provide one implementation that is optimised to handle an integer argument while another is optimised to handle a real argument. We can also use function overloading to provide a common implementation of a function which can then be invoked by overloads that handle the low-level type conversions.


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.


What function is used to perform exponentiation in C language?

You can use the pow() function in math.h.


Where do you use no argument no return in c function?

Where there is no need to return any type of value from a function


What is the use of function in c?

using function we can call the function in the program any where. by using functions we can reduce the code redundancy


C program for 2D convolution?

You can use ImageMagick library and use 'convolve' function.


Why you use else function in c language?

You cannot have a function named else, because it is a reserved word.