Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
My first 2D array
//gcc 5.4.0 #include <stdio.h> int main(void) { const int n=4; const int m=4; int a[4][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,16}}; int i,j; for(i=0;i<n;i++) for(j=0;j<m;j++) printf("counting[%d][%d]=%d\n",i,j,a[i][j]); return(0); }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
funcion quicksort
CO_assign_q1
a.c
20171117_FUNCIONES
Primer avance de lista enlazadas
LECTURA DE CADENAS CON FGETS
pseudo hw v1
HeapSort
dcl
Array non repeated alphabets
Please log in to post a comment.