Difference between revisions of "C++/C Q & A on stackoverlfow"

From CDOT Wiki
Jump to: navigation, search
(Q&A List compiled from stackoveflow)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== Q&A List compiled from [http://stackoverflow.com/ stackoveflow]==
+
== Q&A List compiled from [http://stackoverflow.com/ stackoverflow]==
 
*How come there's no namespace specified before :: ?  [http://stackoverflow.com/questions/5966647/c-namespace-question] (Peter Liu)
 
*How come there's no namespace specified before :: ?  [http://stackoverflow.com/questions/5966647/c-namespace-question] (Peter Liu)
 
** global namespace [http://stackoverflow.com/questions/10269012/global-scope-vs-global-namespace]
 
** global namespace [http://stackoverflow.com/questions/10269012/global-scope-vs-global-namespace]
*FYE - the C++ standard namespace (std) [http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/namespaces.html#Standard] (Peter Liu)
+
*FYI - the C++ standard namespace (std) [http://www-h.eng.cam.ac.uk/help/tpl/languages/C++/namespaces.html#Standard] (Peter Liu)
 
*What does it mean for a char to be signed? [http://stackoverflow.com/questions/451375/what-does-it-mean-for-a-char-to-be-signed] (Peter Liu)
 
*What does it mean for a char to be signed? [http://stackoverflow.com/questions/451375/what-does-it-mean-for-a-char-to-be-signed] (Peter Liu)
 +
*This thread contains Tips to make sure your code is cross-compatible [http://stackoverflow.com/questions/3451537/c-cross-platform-code] (Lucas Passarella)
 +
*Unsigned keyword in C++ [http://stackoverflow.com/questions/2099830/unsigned-keyword-in-c] (Peter Liu)
 +
*Use of Nested C++ Classes to Hide Implementation Details [http://stackoverflow.com/questions/4571355/nested-classes-c] (Peter Liu)

Latest revision as of 12:32, 14 December 2012

Q&A List compiled from stackoverflow

  • How come there's no namespace specified before :: ? [1] (Peter Liu)
    • global namespace [2]
  • FYI - the C++ standard namespace (std) [3] (Peter Liu)
  • What does it mean for a char to be signed? [4] (Peter Liu)
  • This thread contains Tips to make sure your code is cross-compatible [5] (Lucas Passarella)
  • Unsigned keyword in C++ [6] (Peter Liu)
  • Use of Nested C++ Classes to Hide Implementation Details [7] (Peter Liu)