Back To C++ Basic Index
//program to input two float (decimal point ) values and find their division #include
#include
void main() { float a,b; float division; clrscr(); cout<<"enter value for a "; cin>>a; cout<<"enter value for b"; cin>>b; division=a/b; cout<<"quotient of a divided by b is "<