Translations:Development/Tutorials/Common Programming Mistakes/34/pt-br: Difference between revisions
Appearance
Created page with "<syntaxhighlight lang="cpp-qt"> // Correct! static const int AnswerToAllQuestions = 42; // Wrong! #define AnswerToAllQuestions 42 </syntaxhighlight>" |
(No difference)
|
Latest revision as of 19:15, 3 December 2019
// Correct!
static const int AnswerToAllQuestions = 42;
// Wrong!
#define AnswerToAllQuestions 42