HackerTrans
热门最新趋势评论往期问答秀出招聘

dfrey

no profile record

评论

dfrey
·10年前·讨论
I think your do-while suggestion is kind of cool, but I think that this program may do different things under a current C compiler and one which includes the feature you suggested.

    int x = something();
    do {
        const int x = somethingElse();
        ...
    } while (x != 42);