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 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql

2405


Design an implement of the inputs functions for event mode

2957


write a program for area of circumference of shapes

2028


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.

2380


Write a routine to implement the polymarker function

4375






could you please send the program code for multiplying sparse matrix in c????

3067


Cluster head selection in Wireless Sensor Network using C programming language.

3107


How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?

2019


What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?

3707


What is full form of PEPSI

1864


How can I Create a C program in splitting set of characters to specific subsets. Example: INPUT SET OF CHARACTERS: Therefore, my dear brothers and sisters, stand firm. Let nothing move you. Always give yourselves fully to the work of the Lord, because you know that your labor in the Lord is not in vain. SPLIT INTO HOW MANY CHARACTERS PER SUBSETS: 10 OUTPUT: Therefore, my dear b rothers an d sisters, stand fir m. Let not hing move you. Alway s give you rselves fu lly to the work of t he Lord, b ecause you know that your labo r in the L ord is not in vain.

1928


how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns

3117


why do you use macros? Explain a situation where you had to incorporate macros in your proc report? use a simple instream data example with code ?

2258


why nlogn is the lower limit of any sort algorithm?

2373


#include int main(void) { int a=4, b=2; a=b<>2 ; printf("%d",a); return 0; }

1067