This repository contains examples and explanations of 1D arrays and strings in C++. 1D arrays are collections of elements of the same data type, while strings are sequences of characters. This README ...
この記事を書いていて、改めてBlueprintとC++では同じ処理を書いても違った思考で処理を書いていることに気付きました。 処理が同じだけど、思考が違う 不思議な感覚です。 ニュータイプがこれからドンドン生まれてくる予感がします。 ニュータイプは ...
To understand and implement arrays and strings in C++, exploring their characteristics, operations, and common algorithms for efficient data manipulation. 📚 THEORY 📌 Arrays An array is a collection ...
C++で、関数に文字列を渡す際、const std::string&を引数に使うのが一般的です。でも、この関数に、"Hello"のような、C言語スタイルの文字列リテラルを渡すと、実は、目には見えないところで、一時的なstd::stringオブジェクトの生成と、メモリ確保、そして文字列 ...
Abstract: Arrays and pointers are the key point in C++ and also are difficulty point. In order to improve the efficiency of program, we often combine the arrays and pointers during developing software ...