Programming Language Array in C Language Question #1428
Single Choice Not Set

QWhat will be the output of the program if the array begins at address 65486?

#include<stdio.h>
void main()
{
    int arr[] = {12, 14, 15, 23, 45};
    printf("%u, %u", arr, &arr);
}

ID: #1428 Array in C Language 1,014 views
Question Info
#1428Q ID
Not SetDifficulty
Array in C LanguageTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 65486, 65488
  • B 65486, 65490
  • C 65486, 65487
  • D 65486, 65486
Correct Answer

Explanation

65486, 65486

Share This Question

Challenge a friend or share with your study group.