인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

jiyun110595484's profile image
jiyun110595484

asked

Everything You Need to Know About C Language from the Author of Self-Study C Language

2.2 - Constants and Data Representation Methods

printf값으로 찍을 때 질문

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);

 

어떻게 코딩해야 맞는 표현인가요???

c

Answer

This question is waiting for answers
Be the first to answer!
jiyun110595484's profile image
jiyun110595484

asked

Ask a question