A

Admin • 833K Points
Coach

Q. Which of the following codes creates an array of 5 integers?

  • (A) int arr(5);
  • (B) int *arr[5];
  • (C) int arr[4];
  • (D) int arr[5];
  • Correct Answer - Option(D)
  • Views: 28
  • Filed under category C Programming
  • Hashtags:

Explanation by: Admin

To create an array of 5 integers use int arr[5];
.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.