answersLogoWhite

0

What do you call the parts of the body without function?

Updated: 8/20/2019
User Avatar

Wiki User

10y ago

Best Answer

Vestigial...the vermiform appendix, which a surgeon takes great delight in removing :) , is a prime example in the human body.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What do you call the parts of the body without function?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is meant by a function call?

A function call is where you "call" a function and execute its body. For example: void example() { } int main() { example(); // call the function "example" and execute its bodyreturn 0; }


When the anatomy of a body is intimately tied to its specific function scientists call this the principle of?

complimentary of structure and function


Why inlinefunctions can't be recursive?

Inline functions are just that, they are "inline", which means that the compiler injects the body of the function declaration into (inline to) the text segment without generating the actual call sequence. Without the call sequence, there is no stack frame, so there are no local variables. Without local variables or the stack frame, there can be no recursion.


What do you call a body without a head?

Ïn the case of a real life body, you just call it "a headless body". In Art (for instance sculpture or a painting) you call it a torso.


What is difference function prototype and function define in turbo c?

In C, a function prototype is a declaration to the compiler that a certain function exists, without a full definition. This allows other functions to call that function. The linker will later make sure that a function definition actually exists (perhaps somewhere else), and will turn the call to the function to a call to the correct function.


What do you call the following parts of the body Legs and arms?

How about Legs and Arms.


How do you call a murder with removed body parts?

The blood can sometimes be dry.


When the anatomy of a body part is intimately tied to its specific function scientists call this the principle of?

principle of complementarity of structure and function


How do you use a function with a button in PHP?

A simple function call <html> <body> <?php if(isset($_POST['button'])) { setValue(); // Function is called } function setValue() { echo "<br>The button property to call PHP function works"; // Your code here } ?> <input type="submit" name="button" onclick=<?php $_SERVER['PHP_SELF']; ?> /> </body> </head>


What do you call a body part that loses it function through evolution?

vestigial


What do you call an organ that serves no useful function in an organism?

A vestigial is an organ that serves no useful function in an organism.


A c program to call a function without using function name?

It can be done via its address, for example: void function (void (*callback)(void)) { (*callback)(); }