¡@

Home 

c++ Programming Glossary: uppercase

Why are preprocessor macros evil and what are the alternatives?

http://stackoverflow.com/questions/14041453/why-are-preprocessor-macros-evil-and-what-are-the-alternatives

there isn't so much as a replacement as a rule only use uppercase names for macros and never use all uppercase names for other.. rule only use uppercase names for macros and never use all uppercase names for other things. 4 Macros have effects you don't realise..

Which iomanip manipulators are 'sticky'?

http://stackoverflow.com/questions/1532640/which-iomanip-manipulators-are-sticky

showbase no showpoint no showpos no skipws no unitbuf no uppercase dec hex oct fixed scientific internal left right These manipulators..

What are the rules about using an underscore in a C++ identifier?

http://stackoverflow.com/questions/228783/what-are-the-rules-about-using-an-underscore-in-a-c-identifier

macros identifiers beginning with an underscore and an uppercase letter identifiers containing adjacent underscores or double.. underscore _ _ or begins with an underscore followed by an uppercase letter 2.11 is reserved to the implementation for any use. Each.. identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use...

STL String to lower case

http://stackoverflow.com/questions/313970/stl-string-to-lower-case

no way to know whether the character is lowercase or uppercase otherwise. If you really hate tolower here's a non portable..

How do you reconcile common C++ naming conventions with those of the libraries

http://stackoverflow.com/questions/350419/how-do-you-reconcile-common-c-naming-conventions-with-those-of-the-libraries

the use of camelCaseIdentifiers names that start with an uppercase letter for classes Person Booking and names that start with.. names in C and Unix and functions starting with an uppercase letter in Windows. As a result my code is a mess because some..

Why don't people indent C++ access specifiers/case statements?

http://stackoverflow.com/questions/4299729/why-dont-people-indent-c-access-specifiers-case-statements

right now with public member variables starting with an uppercase letter yikes . Don't sweat it it's not worth it. share improve..

Polymorphism in c++

http://stackoverflow.com/questions/5854581/polymorphism-in-c

#define f X X 2 note in real code use a longer uppercase name for a macro Overloading void f int x x 2 void f double..

Convert an ASCII std::string to hex

http://stackoverflow.com/questions/5990825/convert-an-ascii-stdstring-to-hex

result result std setw 2 std setfill '0' std hex std uppercase std copy test.begin test.end std ostream_iterator unsigned int..

Custom stream manipulator for streaming integers in any base

http://stackoverflow.com/questions/6478745/custom-stream-manipulator-for-streaming-integers-in-any-base

const char digitChar str.flags std ios_base uppercase digitCharUc digitCharLc while i out is an iterator that accepts.. std cout StreamManip base 10 255 std endl std cout std uppercase StreamManip base 16 255 std endl return 0 share improve this..

Whats the difference between the WIN32 and _WIN32 defines in c++

http://stackoverflow.com/questions/662084/whats-the-difference-between-the-win32-and-win32-defines-in-c

this case MS because it begins with an underscore and an uppercase letter you are not allowed to define reserved names in your..

Real-world use of X-Macros

http://stackoverflow.com/questions/6635851/real-world-use-of-x-macros

0x02 ... ENTRY COMMANDX commandX 0x0X I have both the uppercase and lowercase names in the table because the upper case will..

Where can I find a tool to convert a VS solution to a gcc makefile?

http://stackoverflow.com/questions/870533/where-can-i-find-a-tool-to-convert-a-vs-solution-to-a-gcc-makefile

mostly concerned with converting line endings fixing lower uppercase issues and forward backward slashes. But as of version 1.1.19..