void main()
{
printf(“sizeof (void *) = %d \n“, sizeof( void *));
printf(“sizeof (int *) = %d \n”, sizeof(int *));
printf(“sizeof (double *) = %d \n”, sizeof(double *));
printf(“sizeof(struct unknown *) = %d \n”, sizeof(struct
unknown *));
}
Answer Posted / susie
Answer : :
sizeof (void *) = 2
sizeof (int *) = 2
sizeof (double *) = 2
sizeof(struct unknown *) = 2
Explanation:
The pointer to any type is of same size.
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
write a simple calculator c program to perform addition, subtraction, mul and div.
What is data _null_? ,Explain with code when u need to use it in data step programming ?
Cluster head selection in Wireless Sensor Network using C programming language.
Design an implement of the inputs functions for event mode
To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']
write a c program to input initial & final time in the format hh:mm and find the time intervel between them? Ex inputs are initial 06:30 final 00:05 and 23:22 final 22.30
could you please send the program code for multiplying sparse matrix in c????
Sir... please give some important coding questions asked by product companies..
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
why nlogn is the lower limit of any sort algorithm?
how to test pierrot divisor
How can you relate the function with the structure? Explain with an appropriate example.
Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?
Develop a routine to reflect an object about an arbitrarily selected plane
can you use proc sql to manpulate a data set or would u prefer to use proc report ? if so why ? make up an example and explain in detail