Posts

Showing posts from June, 2019

Data Types in C++

Image
Data Types in C++ C ++ provides following data types :    we can derive data types into three parts: Primary data type Derived data type. user defined data type Primary data type  It is also known as inbuilt data type. char :  Size : 1 byte  Range : -128 to 127 unsigned char :  Size : 1 byte  Range : 0 to 255 short or int :  Size : 2 byte  Range : -32,768 to 32,767 unsigned int :  Size : 2 byte  Range : 0 to 65535 May You Like To Read This Related Articles: What Is Operating System? Knowledge Of OS!! Operating System As A User Interface And As A Resource Manager - Technopedia! Services Of Operating System -  Technopedia!!! Basic Concepts Of OOPC!! CONCEPT OF DBMS!! Types Of Operating System - Technopedia!!! Basic Program Of C Language For Print Hello!! long :  Size : 4 byte  Range : -2147483648 to 2147483648 unsigned long :  Size : 4 byte  Range : 0