hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.4K
active users

#226 Given the following in C and C++

struct A {
int y : (int)(double)10.f;
};

Without checking, valid code?

C | C++
=========
A. No | No
B. No| Yes
C. Yes | No
D. Yes | Yes



@shafik Where’s the “wat” option

@inthehands Apologies, WatMan was not available for this quiz

Paul Cantrell

@shafik I hear WatMan is super busy these days!

(FWIW, tried it with clang here, and I don’t see the trick; the results are the same even with the simpler `int y : 10;` instead.)

@inthehands Have you tried C and have you tried -pedantic

@shafik Yes. I’m missing a language flag or something, aren’t I?