Data types of LONG, INT, SHORT, CHAR
To define the data types such as LONG, INT, SHORT, CHAR write a program?
Expert
The data type like LONG, INT, SHORT, CHAR does not describe the specific length and it can be determined only by the host machine.
a. It defines that the bits which are used with each of the types and the notation used for the above mentioned types.
b. The LONG is being referred by the prefix l whose upper-case is L.
c. INT is a variable that can be prefixed with i or ui that indicates the integer as well as unsigned integers.
d. CHAR is prefixed with c or uc which also mean character and unsigned character respectively.
e. The size of the data types are platform independent and the size of the variable also not matter.
f. They can be defined as:-
typedef long LONG; typedef unsigned long ULONG; typedef int INT; typedef unsigned int UINT; typedef short SHORT; typedef unsigned short USHORT; typedef char CHAR; typedef unsigned char UCHAR;
Non-modal: In this a dialog is non-modal when its parent application is not blocked from additional activity whereas the dialog is being revealed.
Sub type: It is a type with a parent super type. The sub-type or super-type relationship is more common than the sub-class or super-class relationship. A class which implements an interface is a sub type of interface. An interface which expands the ot
Last in, first out: It is the LIFO semantics of a stack data structure. Items are eliminated in the opposite order to which it arrived in the stack; therefore newer items are always eliminated before older ones.
Reflection: It is the ability to find out what fields, methods, constructors, and so forth, are stated for an object or class. Reflection is supported by the Class ‘class’, and other classes in the java.lang.reflect package. Reflection mak
Normal 0 false false
Multiple Inheritance: In C++, multiple-inheritance occurs when a class inherits from more than one parent. For example: Q : Examples of applications which can Give some examples of applications which can benefit from using XML?
Give some examples of applications which can benefit from using XML?
Package declaration: It is a declaration employed to name a package. This should be the first item in the source file, preceding any import statements. For example, pa
In CORBA, what are i) an ORB ii) an IOR iii) a servant iv) a POA and v) a POA manager?
Explain Operator with their types and examples?
18,76,764
1932791 Asked
3,689
Active Tutors
1434332
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!