Computer Science, asked by SakshiDeshmukh6388, 1 year ago

.What is type def and sizeof operator in c++?

Answers

Answered by aayushdayama
0
Science jai kya bjai.
Answered by akhileshpathak1998
0

Answer:

typedef is used in C++ to assign existing types of alternative names.

sizeof  is a function keyword used in C++ language

Explanation:

The keyword typedef is used in C++ to assign existing types of alternative names. typedef is mainly used with date types of user-defined and also when the names of data types get a little difficult to understand.

sizeof is a function keyword used in C++ language and it is used to collect the information about data type & objects and their amount of memory allocated.

Similar questions