Translations:Development/Tutorials/Common Programming Mistakes/34/pt-br

From KDE TechBase
Revision as of 19:15, 3 December 2019 by Juliano Assis (talk | contribs) (Created page with "<syntaxhighlight lang="cpp-qt"> // Correct! static const int AnswerToAllQuestions = 42; // Wrong! #define AnswerToAllQuestions 42 </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
// Correct!
static const int AnswerToAllQuestions = 42;
// Wrong!
#define AnswerToAllQuestions 42