18. C Program to convert the Dollars into Rupees .
How does this program work?
- This program will help you to convert Dollars into Rupees in easy way using C-language.
Here is the code
#include <stdio.h>
int main(void)
{
int a,b;
printf("Enter amount in Dollars\n");
scanf("%d",&a );
b=a*71.16;
printf("Total amount %d in Rupees from %d Dollars\n",b,a);
return 0;
}