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 |
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Explain the concept and use of type void.
simple c program for 12345 convert 54321 with out using string
Explain what does a function declared as pascal do differently?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
Write code for atoi(x) where x is hexadecimal string.
How will you delete a node in DLL?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
What is array within structure?
Explain what are the __date__ and __time__ preprocessor commands?
Why do we use int main instead of void main in c?