source: CIVL/examples/possibleBug/test1.cvl@ 19e7e2d

1.23 2.0 main test-branch
Last change on this file since 19e7e2d was 5f84428, checked in by Yihao Yan <yihaoyan1@…>, 9 years ago

add two examples

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@3872 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 111 bytes
Line 
1#include <stdio.h>
2
3void fun(double *a){
4 *a = *a + 1;
5}
6
7int main(){
8 double Jb;
9 fun(&Jb);
10 return 0;
11}
Note: See TracBrowser for help on using the repository browser.