can any one explain plz urgently
code was this
#include<stdio. h>
#include<conio. h>
void main()
{
double a=3.1428571;
int b=4347;
printf("%e\t%5d \t%5.4f\t%.5f\n ",a,b,9,9);
getch();
}
--------OUTPUT-------------
3.142857e+000 4347 0.0000 0.00000
plz explain this why is the output of this function is this
code was this
#include<stdio. h>
#include<conio. h>
void main()
{
double a=3.1428571;
int b=4347;
printf("%e\t%5d \t%5.4f\t%.5f\n ",a,b,9,9);
getch();
}
--------OUTPUT-------------
3.142857e+000 4347 0.0000 0.00000
plz explain this why is the output of this function is this
Comment