>
Programming and Data Structure
List of top Programming and Data Structure Questions
What will be the output of the following program assuming that the array begins at location 1002?
#include<stdio.h>
void main()
{int a[2] [3] [4] ={ {1,2,3,4,5,6,7,8,9,1,1,2,}, {2,1,4,7,6,7,8,9,0,0,0,0}};
printf("/n%u%u%u %d", a, *a, **a, ***a);
CUET (PG) - 2023
CUET (PG)
Programming and Data Structure
Programming in C
Match List I with List II
List I
List II
A
printf("%d", size of (3.14));
I
5
B
Union A (intx, float y,} printf("%d", size of (A));
II
4
C
Invalid ostruct B {char x; double y;}; C. 2 printf("%d", size of (B));pcode
III
2
D
printf("%d", size of ('1'));
IV
8
CUET (PG) - 2023
CUET (PG)
Programming and Data Structure
Programming in C
Which of the following sequences of output can be generated?
GATE CS
Programming and Data Structure
Stack
Prev
1
2
Next