difference between plain integer and long integer
Answers
Answer:
Plain integers (also just called integers) are implemented using long in C, which gives them at least 32 bits of precision. Long integers have unlimited precision. Floating point numbers are implemented using double in C. ... Complex numbers have a real and imaginary part, which are each implemented using double in C.
Hope it helps you
Please mark me as brainliest
Thank you
Answer:
Your answer is below pls follow
Explanation:
Plain integers (also just called integers) are implemented using long in C, which gives them at least 32 bits of precision. Long integers have unlimited precision. Floating point numbers are implemented using double in C. ... Complex numbers have a real and imaginary part, which are each implemented using double in C.