alexbozhenko / alexbozhenko.github.io

Homepage
https://alexbozhenko.github.io/
0 stars 0 forks source link

Confused about implicit type promotion in C :: Alex Bozhenko blog #3

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

Confused about implicit type promotion in C - Alex Bozhenko blog

The following code compiles and prints the message.

https://alexbozhenko.github.io/posts/2020/12/confused-about-implicit-type-promotion-in-c/

VictorDenisov commented 3 years ago

It is indeed a very annoying feature of C. C is not really strongly typed. Golang and Rust are languages for the areas where C traditionally excels.

alexbozhenko commented 3 years ago

It is indeed a very annoying feature of C. C is not really strongly typed. Golang and Rust are languages for the areas where C traditionally excels.

Thanks for the comment, @VictorDenisov! Learning golang is my next goal)