main
|
Last change
on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago |
|
Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.
git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c
|
-
Property mode
set to
100644
|
|
File size:
269 bytes
|
| Rev | Line | |
|---|
| [fc0dfe5] | 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.