Home » , » Basic C Programming Practice - Practice 31

Basic C Programming Practice - Practice 31

Written By Unknown on Friday, October 11, 2013 | 12:17 AM

=> Write a program in C to Arithmetic operations of two double numbers. Print these results in separate lines?


Solution :

#include<stdio.h>
#include<conio.h> 

main()

{


double one,two;

scanf("%lf%lf", &one,&two);

printf("%lf\n%lf\n%lf\n%lf",one+two,one-two,one*two,one/two);

getch();

} 



Program Analysis :

Share this article :

Post a Comment

 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. Learn Programming - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger| Distributed by Rocking Templates