> Online tutorial : rupee to dollar using c
Showing posts with label rupee to dollar using c. Show all posts
Showing posts with label rupee to dollar using c. Show all posts

rupee to dollar using c

#include
#include
void main()
{
int d;
clrscr();
printf("\n enter the value$");
scanf("%d",&d);
printf("\n now the rupees value is:%d",40*d);
getch();
}
>/tr>
Output
enter the value$ 2 now the rupees value is 80