answersLogoWhite

0

Repeatedly executes body while test expression is true.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What does the inc function do in clojure?

Returns a number one greater.


What does the re-find function do in clojure?

Returns the next regex match, if any, using java.util.Matcher.find().


What does the cons function do in clojure?

Returns a new sequence where the first parameter is the first element and the second parameter is the rest.


What is the url for clojure api?

http://clojure.org/apiIf you'd like to know more about Clojure, refer to: http://en.wikipedia.org/wiki/ClojureThis is documentation for all of Clojure's functions and macros, arranged alphabetically within namespace. It is generated from the source and reflects the current SVN version. All namespaces are loaded by the runtime except clojure.inspector, clojure.parallel


What function is the last affected while drinking alcohol?

function of a liver..


What is the function of the crystals?

The function is to protect the Caterpillar while it transforms into a butterfly


What is the difference between a function pointer and a pointer to a function?

A pointer to a function is the memory address that stores the address of a function, while the pointer itself is a function pointer.A pointer to a function might be defined as "int (*pf)(int, int);", while to actually point to the function, you would use a function pointer, such as "pf = &func;".


Is the word importance and function the same?

No, importance and function are not the same. Importance refers to the significance or value of something, while function refers to the purpose or role that something serves. A function describes what an object does, while importance describes how valuable it is.


What are the Differentiate the sine wave and cosine wave?

The differential of the sine function is the cosine function while the differential of the cosine function is the negative of the sine function.


Can you define a function inside a function?

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.


Why you use while function in c?

It is a statement; you can create a loop with it: while (<condition>) <statement>


Difference between subroutine and function?

Both A function and a Sub carry out a procedure, but only A function returns a result while a Sub does not return a result.