{}
run-icon
main.c
#include <stdio.h> int main() { int a = 5; int b = 2; printf("%f", (float)a / b); return 0; }
Output