Arsh
Always Ahad
Date
Page
Qus- What is user define data type ?list it's merits and dimerits
Answers
Answered by
1
Answer:
int only stores whole numbers and wraps around if you go over 2,147,483,647, but can be used as index into arrays, and works great for array sizes, number of items, bitmasks, IDs, exact values…
float/double store any non-whole number (with a bit of rounding if needed). The precision is adaptative (there are as many values between 0.125 and 0.25 as between 8,388,608 and 16,777,216). The allowed value range is HUGE. It’s great for calculations with lots of multiplications, numerical stuff like 3d vertex math, sound processing, approximate values…
Answered by
0
Answer:
This is the answer
Explanation:
Mark me as brilliant and follow me
Attachments:
Similar questions