#include stdio.h

int main(void) {
float rupees=10;

printf("rupees =%f",rupees);

float dollars = rupees / 87;

printf("%f Dollars", dollars);
}
What is the output of the c program

Posted on by