Computer Science, asked by AGVissal, 7 months ago

Answer it right. If it is spam ur answer will be reported...... If it is right. I will mark it as brainliest sure......​

Attachments:

Answers

Answered by Anonymous
1

Answer:

Following program shows you how to convert dollar to rupees. In this program we get dollars from user, once we get those we need to multiply with 70 (use current $ value) so that we get in rupees

#include <stdio.h>

int main(void) {

float dollars;

printf("Please enter dollars:");

scanf("%f", &dollars);

float rupees = dollars * 70;

printf("%f Rupees", rupees);

}

Output:

Please enter dollars: 300

21000 Rupees

Explanation:

I am not much sure

But Hope it helps you ✌️❣️❣️

Have a wonderful day ✌️❣️❣️

Similar questions