1. >CUET (PG)
  2. >Programming and Data Structure
Found 2  QuestionsSET DEFAULT
Selected Filters
    CUET (PG) Programming and Data Structure Programming in C
Exams
Years
Subjects
Topics

List of top Programming and Data Structure Questions on Programming in C asked in CUET (PG)

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
Aprintf("%d", size of (3.14));I5
BUnion A (intx, float y,} printf("%d", size of (A));II4
C Invalid ostruct B {char x; double y;}; C. 2 printf("%d", size of (B));pcode III2
Dprintf("%d", size of ('1'));IV8
  • CUET (PG) - 2023
  • CUET (PG)
  • Programming and Data Structure
  • Programming in C