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 |
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is a far pointer?What is the utility?
Write a program to show the change in position of a cursor using c
How can I determine whether a machines byte order is big-endian or little-endian?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
What is optimization in c?
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
input any 4 digit number and find the difference of all the digits?
What is difference between structure and union in c programming?
Is null equal to 0 in sql?
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
Can 'this' pointer by used in the constructor?