运行如下程序,其结果为0,修改程序使之得到较准确结果。#include <stdio.h>void main()inta=5,b=7; float c ; c=a/b;printf("c=%f\n",c);
int a=5,b=7;改成float a=5,b=7;