How do you decide which integer type to use?
Answer / Anjali
When deciding which integer type to use, consider the range of values needed to be stored, the precision required, and the target hardware architecture. If the values are within a certain range (usually -32768 to 32767), an `int` is often a good choice. For smaller or larger ranges, consider using `char`, `short`, `long` or other types.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the advantage of c++ over c?
Does c++ have finally?
What is "strstream" ?
check whether a no is prime or not.
What do manipulators do?
Explain what happens when a pointer is deleted twice?
What is #include iostream?
What is the difference between a reference and a pointer?
without if else statement can be written ah
What are static member functions?
What is the correct syntax for inheritance a) class aclass : public superclass b) class aclass inherit superclass c) class aclass <-superclass
How many static variables are created if you put one static member into a template class definition?