Arrays - Find Output of Program :: Discussion


3.What will be the output of the program?
A.1
B.2
C.3
D.4
Answer:  Option  A
Explanation:

Step 1int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 8, 7, 8, 9, 0}; The variable a is declared as an multidimensional integer array with size of 3 rows 4 columns.

Step 2int *ptr; The *ptr is a integer pointer variable.

Step 3ptr = &a[0][0]; Here we are assigning the base address of the array a to the pointer variable *ptr.

Step 4fun(&ptr); Now, the &ptr contains the base address of array a.

Step 4: Inside the function fun(&ptr); The printf("%d\n", **p); prints the value '1'.

because the *p contains the base address or the first element memory address of the array a (ie. a[0])

**p contains the value of *p memory location (ie. a[0]=1).

Hence the output of the program is '1'

Tutorial Link:
Published by:Michael Daani

Comments are not available

Post your comments here:

Optional

Date to Date Current Affairs 2022

PakMCQs.net

Quick Links

GAT Subject



   Computer Science    English Mcqs    Agriculture    

Engineering



   Computer Science    Civil Engineering    

Technical



   Networking    Electronics    Database    

Past Papers



   Model Papers    FPSC Papers