Showing posts with label two dimensional array in c. Show all posts
Showing posts with label two dimensional array in c. Show all posts

Saturday, November 21, 2015

Two Dimensional Array in C language

Simple program that I wrote in C language to demonstrate how to display initialize values in two dimensional array in C.

If you  have some questions please send me an email at jake.r.pomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360.



Sample Program Output


Program Listing

#include <stdio.h>

main()
 {
     int a[3][2] = {1,2,3,4,5,6};
     int row=0,col=0;

       for (row=0; row<3; row++) {
        for (col=0; col<2; col++) {
            printf(" %d ",a[row][col]);

        }

     }

 }