#include <stdio.h>
int main()
{
int i;
float f;
double d;
i=(long)('a'+1.3);
f=2.49+i;
d=(double)f*i;
// 데이터 손실 여부를 확인하기 위해 출력해 봅니다.
printf("%d \n", i);
printf("%lf \n", f);
printf("%lf \n", d);
}
#include <stdio.h>
int main()
{
int i;
float f;
double d;
i=(long)('a'+1.3);
f=2.49+i;
d=(double)f*i;
// 데이터 손실 여부를 확인하기 위해 출력해 봅니다.
printf("%d \n", i);
printf("%lf \n", f);
printf("%lf \n", d);
}