Compare commits

..

No commits in common. "da1d77758a27250fcd50403e7b3550e3305c2a68" and "2255d2f5ca6fde0f8a4b207742972d53fe1e8716" have entirely different histories.

View File

@ -1,17 +0,0 @@
#include <stdio.h>
int main()
{
float f;
double d;
printf("float :");
scanf("%f", &f);
printf("double :");
scanf("%lf", &d);
printf("f = %f, d = %f", f, d);
return 0;
}