Skip to Main Content
Fundamentals of Computer Programming and IT by Pearson
book

Fundamentals of Computer Programming and IT by Pearson

by Ashok Namdev Kamthane, Rohit Khurana
May 2024
Intermediate to advanced content levelIntermediate to advanced
577 pages
22h 34m
English
Pearson India
Content preview from Fundamentals of Computer Programming and IT by Pearson
Overview of C++ 245
8.20 TYPE MODIFIERS
The keywords signed, unsigned, short, and long are type modifiers. A type modifier changes
the meaning of the base data type to produce a new data type. Each of these type modifiers is applicable to the
base type int . The modifiers signed and unsigned are also applicable to the base type char. In addition,
long can be applied to double data type. When the base type is absent from a declaration, int is supposed.
Examples:
long l; // int is implied
unsigned char c;
signed int s; // signed is default
unsigned long int u; // int OK, not necessary
Write a program to declare variables with type modifiers, ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Basic Computer Engineering (Subject Code: BE - 205)  by Pearson

Basic Computer Engineering (Subject Code: BE - 205) by Pearson

Anita Goel, Anand Motwani

Publisher Resources

ISBN: 9781299447479