WHAT IS INT?
Answers were Sorted based on User's Feedback
Answer / laxman
it is a integer.
it is a used to declare some numeric valu.
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / dabish
it is a primitive datatype which holds an integer value.. Its size is 2
| Is This Answer Correct ? | 7 Yes | 1 No |
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 |
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 |
Answer / thulasi
int is a integer data type that represents a variable with the integeral values
| Is This Answer Correct ? | 1 Yes | 0 No |
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 |
Answer / vijayalakshmi
integer is a datatypes, which is used to initialising the variables.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is pointer to pointer in c?
Explain how do you determine a file’s attributes?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What do you mean by command line argument?
what is linkage error when it occurs in c program
Explain low-order bytes.
write a c program to find the probability of random numbers between 1-1000
why TCS selected more student in the software field from all institution.
can we define a function in structure?
Are the outer parentheses in return statements really optional?
What are the benefits of organizational structure?
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }