asked
Everything You Need to Know About C Language from the Author of Self-Study C Language
2.2 - Constants and Data Representation Methods
Written on
·
272
0
8byte로 맞추려면 10ll혹은 10LL로 표현하라고 하셨는데,
1. int a = 10ll;
2. int a = 10LL;
3. double a = 10LL;
4. double a = 10ll;
===================
1. printf("%d", a);
2. printf("%lf", a);
어떻게 코딩해야 맞는 표현인가요???
Answer