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
Assignment 7
BSEARCH() WITH STRUCT
Numero de veces digito
18BCE2182 ASSESS_2 Q2
A.c
Project 3 Part 1 v1.7
Array Struct, Call-By-Reference, Malloc, Free, Init, Destroy ... Example
Busqueda binaria version recursiva
cstructCricPoint
FILE_operations