wats SIZE_T meant for?



wats SIZE_T meant for?..

Answer / barun

int
But this size is compiler dependent depending on the
processor you are using. I mean on 32 bit or 64 machines.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Interview Questions

write a C code to reverse a string using a recursive function, without swapping or using an extra memory.

9 Answers   Motorola, TCS, Wipro,


Why is not a pointer null after calling free?

0 Answers  


explain memory layout of a C program

2 Answers  


Explain how does free() know explain how much memory to release?

0 Answers  


HOW TO ANSWER IF ASKED " WHAT KIND OF A PERSON ARE YOU?" I NEED AN ANSWER THAT IMPRESS THE INTERVIEWER

4 Answers  






main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


What is the difference between declaring a variable and defining a variable?

0 Answers  


Can a file other than a .h file be included with #include?

0 Answers   Aspire, Infogain,


Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.

0 Answers   Amazon,


what is the difference between strcpy() and memcpy() function?

2 Answers  


The variables are int sum=10,SuM=20; these are same or different?

3 Answers  


how to determine the complexity of an algorithm as log(n)

1 Answers   Google,


Categories