बिजनेस मार्केटिंग का लो कॉस्ट फंडा , अपने मोबाइल से ऑटो sms भेजकर मार्केटिंग करे विजिट करे http://autotextsms.com/ बिजनेस मार्केटिंग का लो कॉस्ट फंडा http://autotextsms.com/

Search This Blog

Translate

c Program of currency converter

C program  to convert rupees to dollar and vice versa.
C program  to convert Dollar to Rupees and vice versa.
c Program of currency converter


#include
#include
void main()
{
float ans,ans1,ru;
int ch;
clrscr();
do
{
printf("\n\n************ Wel-Come***************");
printf("\n\n 1.Rupees -> Doller");
printf("\n\n 2.Doller -> Ruppes");
printf("\n\n 3. Exit");
printf("\n\nEnter your choice=");
scanf("%d",&ch);
switch(ch)
{
case 1:printf("\n\nEnter the currency in Rupees=");
scanf("%f",&ru);
ans=ru/65;
printf("\n\nThe currency is doller is= %.2f$",ans);
break;
case 2:printf("\n\nEnter the currency in Doller=");
scanf("%f",&ru);
ans1=ru*65;
printf("\n\nThe currency in Ruppes is= %.2f",ans1);
break;
case 3:exit(0);
}
}while(ch<4 font="">
getch();

}


C program  to convert rupees to dollar and vice versa.
C program  to convert Dollar to Rupees and vice versa.
c Program of currency converte

C Program example List