main( )
{
int a[2][3][2] = {{{2,4},{7,8},{3,4}},{{2,2},{2,3},{3,4}}};
printf(ā%u %u %u %d \nā,a,*a,**a,***a);
printf(ā%u %u %u %d \nā,a+1,*a+1,**a+1,***a+1);
}
Answer Posted / susie
Answer :
100, 100, 100, 2
114, 104, 102, 3
Explanation:
The given array is a 3-D one. It can also be viewed as a
1-D array.
2
4
7
8
3
4
2
2
2
3
3
4
100 102 104 106 108 110 112 114 116 118
120 122
thus, for the first printf statement a, *a, **a give
address of first element . since the indirection ***a gives
the value. Hence, the first line of the output.
for the second printf a+1 increases in the third dimension
thus points to value at 114, *a+1 increments in second
dimension thus points to 104, **a +1 increments the first
dimension thus points to 102 and ***a+1 first gets the value
at first location and then increments it by 1. Hence, the
output.
| Is This Answer Correct ? | 11 Yes | 17 No |
Post New Answer View All Answers
Write a routine to implement the polymarker function
What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?
Write a program to model an exploding firecracker in the xy plane using a particle system
In a gymnastic competition, scoring is based on the average of all scores given by the judges excluding the maximum and minimum scores. Let the user input the number of judges, after that, input the scores from the judges. Output the average score. Note: In case, more than two judges give the same score and it happens that score is the maximum or minimum then just eliminate two scores. For example, if the number of judges is 5 and all of them give 10 points each. Then the maximum and minimum score is 10. So the computation would be 10+10+10, this time. The output should be 10 because 30/3 is 10.
How to palindrom string in c language?
write a simple calculator c program to perform addition, subtraction, mul and div.
write a function to give demostrate the functionality of 3d in 1d. function prototye: change(int value,int indexX,int indexY,int indexZ, int [] 1dArray); value=what is the date; indexX=x-asix indexY=y-axis indexZ=z-axis and 1dArray=in which and where the value is stored??
how to programme using switch statements and fuctions, a programme that will output two even numbers, two odd numbers and two prime numbers of the users chioce.
write a program for area of circumference of shapes
#include
Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange
why nlogn is the lower limit of any sort algorithm?
How can you relate the function with the structure? Explain with an appropriate example.
Develop a routine to reflect an object about an arbitrarily selected plane
Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?