j

Tuesday, 3 November 2015

Write a program that take amount in rupees and convert it into doller (1 doller = 105 rupees)



#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int rs,doller;
printf("Enter rupees ::");
scanf("%d",&rs);
doller=rs*105;
scanf("%d rupees is equal to %d",rs,doller);
getch();
}

Subscribe to this Blog via Email :