WHAT IS INT?

Answers were Sorted based on User's Feedback



WHAT IS INT?..

Answer / laxman

it is a integer.
it is a used to declare some numeric valu.

Is This Answer Correct ?    26 Yes 0 No

WHAT IS INT?..

Answer / dabish

it is a primitive datatype which holds an integer value.. Its size is 2

Is This Answer Correct ?    7 Yes 1 No

WHAT IS INT?..

Answer / usha

int is an keyword, that holds integer data type values
its size depends on compiler.

Is This Answer Correct ?    6 Yes 0 No

WHAT IS INT?..

Answer / avadhesh singh yadav

INT is a primitive datatype which is use to represent the
type of value that gonna b stored in variable.
Its range:-128 to +127
size:2byte in turbo

Is This Answer Correct ?    2 Yes 0 No

WHAT IS INT?..

Answer / thulasi

int is a integer data type that represents a variable with the integeral values

Is This Answer Correct ?    1 Yes 0 No

WHAT IS INT?..

Answer / sumanta banerjee

it is a primitive datatype integer. used to declare some numeric value. Its size is 2byte.

Is This Answer Correct ?    1 Yes 0 No

WHAT IS INT?..

Answer / vijayalakshmi

integer is a datatypes, which is used to initialising the variables.

Is This Answer Correct ?    0 Yes 0 No

WHAT IS INT?..

Answer / avinash

INT IS NUMBERS.

Is This Answer Correct ?    6 Yes 15 No

Post New Answer

More C Interview Questions

What do you mean by keywords in c?

0 Answers  


If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.

12 Answers   Google,


Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?

2 Answers   Accenture,


What do you know about the use of bit field?

0 Answers  


What type is sizeof?

0 Answers  






List out few of the applications that make use of Multilinked Structures?

1 Answers   Accenture,


what will happen if you free a pointer twice after allocating memory dynamically ?

3 Answers   Novell,


How can I pad a string to a known length?

0 Answers  


What is string function in c?

0 Answers  


struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?

1 Answers   Wipro,


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

0 Answers  


Categories