#include int main() { float a = 7; // pembilang float b = 4; // penyebut float c = a/b; printf("%f", c); // Hasil: 1.750000 return 0; }