摘要:
#include using std::vector; //Vector is a container. //It has a collection of same type objects. //****************************************************** //Defining and Initializing vectors vector... 阅读全文
摘要:
The C standard doesn't precisely define which type of right shift should be used. For unsigned data, right shift must be logical. For signed data, alm 阅读全文
摘要:
Using a mask, multiple bits in a nibble, byte, words can be set either on, off or inverted from on to off (or vice versa) in a single bitwise operatio 阅读全文
摘要:
The ASCII is only suitable for encoding English-language documents. It's hard for us to encode the special character. The Unicode Consortium has devis 阅读全文