answersLogoWhite

0

What else can I help you with?

Related Questions

Write a c-program to compute compound interest after accepting the principal amount rate and time from user?

#this program to calculate princple amount using perl. print "enter the amount given;","\n"; $A=<stdin>; print "enter the rate of interst given;","\n"; $R=<stdin>; print "enter the no of years given;","\n"; $Y=<stdin>; $o=1+$R; $e=$o**$Y; $t=1/$e; $f=1-$t; $p= $A*$f; print "princple amount $p";


What are user-defined functions?

User-defined functions are functions that are not provided by the language itself. They are the functions that you yourself write or that are provided for you by a third-party.


How many functions you can write within on script tag?

There does not appear to be a limit for the number of functions you can write within one script tag. However, you must make sure that all you functions have the appropriate beginning and ending markers.


How do you write a program in C using the fprint and fscan functions?

By using those two functions in your code.


Write an overview on the HRM functions of your organization or an organization you are familiar with Briefly describe the organization you are referring to?

HRM functions


What are chlorenchyma and write its functions?

cells in epidermis that contain chloroplasts


How do you use cin in C plus plus?

The class cin is an iostream class that abstracts stdin, allowing you to read from the stdin (console input) file. For instance: int age; cout << "How old are you? "; cin >> age; cout << "You said you were " << age " years of age " << endl;


Write a program to illustrate the usage of pointers with arrarys and functions?

* * * * * * * * * * write the c++ program and show me brifily?


How do you write c program to perform sum of elements of matrix using pointers with functions?

i cant write


Write function integerpower that return the value of base exponent?

write a scripting to return values in functions


What is drawback of writing the definitions of all the functions before main function?

If you write out the functions before you write main, you will probably have to return to the functions after outlining main and correct them so that they interact with main as they should. In the long run, it is far better to write main first, so that you understand exactly what you want each function to do before you write the function, so that you don't have to go back and correct them.


What is the use of getchar?

gets()Reads characters from stdin and stores them as a string into str until a newline character ('\n') or the End-of-File is reached.The ending newline character ('\n') is not included in the string.getchar()Returns the next character from the standard input (stdin).It is equivalent to getc with stdin as its argument. === ===