I need the program to print "0.03571428". Instead my program prints only 0.035714. Sorry for the stupid question but I am a beginner as you can see!
int main(int argc, char *argv[]) {
long double a;
int b = 1, c = 28;
a = (long double) b / (long double) c;
printf("%Lf", a);
return 0;
}