answersLogoWhite

0

What functions write in stdin?

Updated: 12/17/2022
User Avatar

Wiki User

12y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What functions write in stdin?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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


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


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 C program using functions to simulate a Calculator with the basic functions - square root and reciprocal?

trytytytytytytytytrf 6 bcvvtgujhy6


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.