Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
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
fibonacci2
LinkedListTest
Stub Program for Problem 5 HW 2
structt
C)_Assign_q4
bit wise operation
LECTURA DE CADENAS CON FGETS
SAI_1-5.c
some_tests
Project 5 v.08