Ask Question
24 March, 20:34

Question 6

Which of the following data types are larger (allocate more bytes) than an int?

short

char

long long

all of the above

+5
Answers (1)
  1. 24 March, 22:13
    0
    long long = 8 bytes

    Explanation:

    long long data type reserves more bytes than int. because

    int reserves = 4 bytes

    long long reserves = 8 bytes

    on the other hand

    short reserves only 2 bytes and char reserves only 1 byte.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Question 6 Which of the following data types are larger (allocate more bytes) than an int? short char long long all of the above ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers