source:
CIVL/mods/dev.civl.com/examples/modelbuilder/arrayext.c@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 269 bytes | |
| Line | |
|---|---|
| 1 | #include<stdio.h> |
| 2 | int f(int n, int a[][n]) { |
| 3 | int s=0; |
| 4 | |
| 5 | for(int i=0; i<n; i++){ |
| 6 | s+=a[0][i]; |
| 7 | } |
| 8 | return s; |
| 9 | } |
| 10 | |
| 11 | int main() { |
| 12 | int b[10][10]; |
| 13 | |
| 14 | for(int i=0; i<10; i++){ |
| 15 | for(int j=0; j<10; j++) |
| 16 | b[i][j]=1; |
| 17 | } |
| 18 | int t= f(10, b); |
| 19 | printf("%d\n", t); |
| 20 | } |
Note:
See TracBrowser
for help on using the repository browser.
