Computer Science, asked by shravyashree, 5 months ago

write c program to convert rupees to paise and vice versa​

Answers

Answered by Mrvagh151
4

Write a C Program to Convert Rupess into Paisa

#include<conio.h>

int main() {

float rs; //real variable for rupees. int ps; // integer variable for paisa.

clrscr();

scanf("%f",&rs);

ps=rs*100;

printf("\n Paisa of given rupees is %d",ps);

printf("\n Paisa of given rupees is %d",ps);getch();

Answered by khansaba04
5

Hope it helps you ✔️✔️......

Attachments:
Similar questions