how to find the size of the data type like int,float
without using the sizeof operator?
Answer Posted / amit ranjan
int main()
{
int a[2];
int one = a;
int two = a+1;
int test = two-one;
printf("%d\n", test);
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a program to generate the Fibinocci Series
Explain union.
What is a void pointer in c?
Why should I prototype a function?
How many keywords are there in c?
Are the variables argc and argv are local to main?
Explain what is a program flowchart and explain how does it help in writing a program?
What is the use of #include in c?
How many types of operators are there in c?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What is the use of header files?
Why is it important to memset a variable, immediately after allocating memory to it ?
What is the difference between the = symbol and == symbol?
What is the correct code to have following output in c using nested for loop?
What is c language & why it is used?