Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は、次のようなヘルプメッセージのような複数行のものを定義するために使用します。
#define HELP_MSG "blabla\r\n" \ "Some other line"
すでに複数行で定義されているので、ここに「\ r\n」を入れないようにする方法はありますか。
いいえ、\単に行継続マーカーとして使用されます。改行が必要な場合は、実行しているように、文字列に明示的に含める必要があります。
\