C programming Interview questions and answers: C program examples | Interview Complete List

C programming Interview questions and answers: C program examples | Interview Complete List

瀏覽:1063
日期:2025-04-28
/*2. Write a program to convert the two-dimensional array into one-dimensional array */ #include #include #define mrow 3 #define mcol 2 main() {int a[mrow][mcol],b[mrow*mcol]; int i,j,k=0; clrscr(); printf("Enter the Matrix elements in row order\n"); ...看更多