aliensbrain
  • Home
  • Study
  • Quizzes
  • 🎤AI Practicefree
  • Notebooks
  • Community
  • Sign in
  • Programming, Data Structure & Algorithm - 1
  • What is the result of the following program? int a[2][2][...
Multiple choice

What is the result of the following program? int a[2][2][2] = { 10, 2, 3, 4, 5, 6, 7, 8 }; printf("%d",***a);

  1. Error

  2. 10

  3. Address of the array

  4. None

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

null

Keep practicing — related questions

  • What would be the output of the following program? main() { int a[5] = {2,3};; printf("\n%d %d %d", a[2],a[...
  • #include main() { int a[2][2][2] = {{10,2,3,4},{5,6,7,8}}; int *p,*q; p=&a[2][2][2]; *q=***a printf("%d----...
  • Consider the following 'C' code and write the output obtained.int a[3][3] = {{1,2,3,4},{5,6,7,8}}; printf(%...
  • void main() { int a[2][3]={{1,2,3},{4,5,6}}; printf("%d\n",++**(a+1)); }
  • 1)main() { int a[2][3][2]={{{2,4},{7,8},{3,4}},{{2,2},{2,3},{3,4}}}; printf(“%u %u %u %d”,a,*a,**a,***a); p...
  • What is the output ?main(){ int a[5]={1,2,3,4,5}; a[7] = 23; printf("%d", a[7]);}
  • Find the output of the following C program: main(){int a[5]={2,3};printf(%d%d%d,a[2],a[3],a[4]);}
  • The output of the following program is main() { int a, b, c; int num[3][4]= {1,2,3,4,5,6,7,8,9,10,11,12}; f...
Play the full quiz 🎤 Practise this topic out loud

Practice this topic

  • Programming Output Evaluation (1721 questions)
Advertisement
© Aliensbrain | all rights reserved
  • About
  • Contact
  • Terms and Condition
  • Privacy Policy