Write a program to convert Amount to Paisa in C

/* Amount to Paisa */
#include<stdio.h>
#include<conio.h>
void main()
{
int amount,paisa;

printf("\n\nEnter the amount in Rs: ");
scanf("%d",&amount);

paisa=amount*100;

printf("\n\nAmount=%d \n\n Paisa=%d",amount,paisa);
getch();
}

Oldest

1 Comments:

Click here for Comments
Anonymous
admin
August 14, 2023 at 9:01 PM ×

Tell in easy way

Thank You Anonymous For Comment.
Reply
avatar