How to calculate percentage between two numbers in C

1 Answer

0 votes
#include <stdio.h>

double GetPercentage(float num1, float num2) {
    return (num1 / num2) * 100.0;
}

int main(void) {
    printf("30 is %.2f%% of 40\n", GetPercentage(30, 40));

    printf("40 is %.2f%% of 30\n", GetPercentage(40, 30));

    printf("20 is %.2f%% of 35\n", GetPercentage(20, 35));

    return 0;
}




/*
run:

30 is 75.00% of 40
40 is 133.33% of 30
20 is 57.14% of 35

*/

 



answered May 20, 2022 by avibootz
edited May 21, 2022 by avibootz

Related questions

1 answer 157 views
1 answer 213 views
1 answer 166 views
1 answer 165 views
1 answer 163 views
1 answer 140 views
...