Computer Science, asked by MuskanGandhi6934, 1 year ago

What is the largest number that a int can hold in cpp?

Answers

Answered by Palak230
0

Short int and int : -32,767 to 32,767. unsigned short int and unsigned int : 0 to 65,535. long int : -2,147,483,647 to 2,147,483,647. unsigned long int : 0 to 4,294,967,295.  Hope it helps.....  

Similar questions