Examveda

How do you declare a two-dimensional integer array in C with 3 rows and 4 columns?

A. int arr[3,4];

B. int arr[3][4];

C. int[3,4] arr;

D. int[4][3] arr;

Answer: Option B


This Question Belongs to C Program >> Arrays And Strings

Join The Discussion

Related Questions on Arrays and Strings