https://share.temu.com/4JoUNivdd4A

Okay Ladies question time, have you ever wore a
#CString bottom? If so, did it stay on, or was it always sliding off?
Never wore a C String
100%
Never wore a C String but curious to try
0%
Wore a C String and it stayed on
0%
Wore a C String and it always slid off
0%
Poll ended at .

《我的妹妹不可能这么可爱》五更琉璃喜欢的游戏角色“魔导院丽华”,漫画版她的胸部是贴着乳贴,内裤虽然只遮挡私处部位,但屁股一端是左右展开到腰部固定住,而到了动画版乳贴似乎被去掉了,改成用披风遮住胸部,而内裤则改成C字裤,总体比漫画版遮挡得更少、胸部更容易走光……
虽然这个角色明显是男性作者画出来讨好男性的观众,但作为一个女生,我非常喜欢这种大胆的衣服设计、穿着去作帅气的战斗,并不是像很多动漫女角衣服一裂开就脸红尖叫,男性观众其实通常就靠欣赏女角的这一尴尬的反应来获取兴奋感,但我欣赏的是《攻壳》里的草薙素子就算全裸也会一脸严肃地作战。
(有个琉璃的手办是COS丽华这套衣服的,衣服为漫画版的设计。)

#二次元 #动漫 #ACG #动画 #漫画 #游戏 #轻小说
#C字裤 #Cstring #crotchless #crotchplate #nude

There is little reason to use C-strings ("null-terminated byte sequences") in C++. Use std::string or std::string_view instead.

C-string literals are OK but consider string and string_view literals instead: https://en.cppreference.com/w/cpp/string/basic_string/operator%22%22s

Related post: "Guidelines for processing immutable text"
https://sigcpp.github.io/2020/04/20/guidelines-for-processing-immutable-text

#cpp #cplusplus #strings #cstring #programming

std::literals::string_literals::operator""s - cppreference.com

I don't quite get why intro C++ courses teach arrays, 2-dimensional arrays no less.

In the same vein, why teach null-terminated strings (beyond literals)? They have so many pitfalls that even the authors can't keep things straight. 😢

#cpp #cplusplus #arrays #cstring

There are many examples of how to print a zero terminated string, or C-string in assembly language on a #C64. Most involve some kind of loop using the CHROUT routine ($FFD2) and some index counter.

There is already a routine in the C64 kernel ROM which can print these strings. It is located at $AB1E and is given the starting address of the string in A/Y.

The pictures shows an example of how this works.

Yes, even after 40 years, one can learn something new and simple. 🤣

#C64 #CString