answersLogoWhite

0

What else can I help you with?

Related Questions

How is a procedure identified as near or far?

The far procedure is used at the place where the function call is given in main program and function definition is given in sub program....


Write a C program called MonthDays to find the number of days in a given month Test your code with different input values to demonstrate that your function is robust?

Write a C program called MonthDays to find the number of days in a given month Test your code with different input values to demonstrate that your function is robust?


What unit of computer does implement the instructions?

The central processing unit (CPU) is the unit of a computer that implements the instructions. It is responsible for carrying out the instructions of a computer program by performing basic arithmetic, logic, control, and input/output operations specified by the instructions.


What does the program Windows Desktop Search do?

The program Windows Desktop Search, as it was known on Windows XP, was a default program on all Windows XP computers that searched your computer for files with a given keyword. The program is now called Windows Search but still does the same basic function.


Write a program in c to convert a given string to lower case?

Use the tolower() function. Example: char* a = 'X'; a = tolower(a); printf("%c", a);


What language used orthogonality as a primary design criterion?

LIPS a functional language is one in which computations are made primarily by applying function to given program


What is the name given to the mixture of flour raising agent and liquid?

the name given to the mixture of flour raising agent and liquid is dough.


How do you evaluate a function for a given input value?

Substitute the given value for the argument of the function.


Can somebody give me the program to find simple interest using friend function in c plus plus?

Here is an example program: class obj{ public: float p,n,r,si; friend void calc( obj temp); }; void calc( obj temp){ si = (p*n*r)/100; } The initialization and function calling is essential.


Write a C program to extract a given word from a file?

program to extract a given word from a file


Algorithms to the given c plus plus programs?

The question is impossible to answer. You cannot determine an algorithm from a given program if the program is not actually given in the question. Please place the program in the discussion section.


How do you find by program a given number is integer or float?

If it contains a decimal point or an exponential part, then it should be handled as a float (or double).You can determine an existing variable's type in C using the type() function