Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what is integer

0 votes
asked Jul 26, 2019 by syazanadhirah (170 points)

7 Answers

0 votes
answered Jul 27, 2019 by Ahtesham Ahmed (190 points)
integer is a databtype
0 votes
answered Jul 27, 2019 by Ahtesham Ahmed (190 points)
integer is a data type
0 votes
answered Jul 28, 2019 by anonymous
Declared the number.
0 votes
answered Jul 28, 2019 by anonymous

Integer is datatype which is used to define numbers like

int a=5;

int a=5.6 is not valid

size of integer is 2bytes in 16bit compliler

the range is-232 to 232-1

0 votes
answered Jul 28, 2019 by [email protected]
Integer is a 2-bit datatype used to declare integer variables.

Eg: int x=2;
0 votes
answered Jul 29, 2019 by Jasvin Liyun (140 points)
Integer is a data type which is used for declare whole number.

eg:-

int a=10; //which the value of a supposed to be in a form of whole number.
0 votes
answered Jul 29, 2019 by UyyuruSaiPrem (140 points)
integer is data type this is we are using in the c language
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...