-
Your NameJonguk Jeon Question안녕하세요, 기본 예시로 나오는 example1.c가 왜 ill-typed인지 궁금합니다. int f(int x) { return x + 1; }
int main() {
int x = 10;
int y = 10 + x;
int z = x - 10;
int w = y / z;
char v = 10 + 2;
if (v == 10)
w++;
else
w--;
y = f(x);
return 0;
} (eng) Hi, I wonder why example1.c is ill-typed. Is there anyone can tell me why? |
Beta Was this translation helpful? Give feedback.
Answered by
Re-st
Jun 4, 2024
Replies: 1 comment 5 replies
-
안녕하세요. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
KihongHeo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
안녕하세요.
이전에 비슷한 질문이 있어 공유드립니다.
#391 가 답변이 될까요?