~ubuntu-branches/ubuntu/oneiric/clif/oneiric

« back to all changes in this revision

Viewing changes to tests/test30.ci

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Bunk
  • Date: 2002-01-25 14:05:49 UTC
  • Revision ID: james.westby@ubuntu.com-20020125140549-v5mmddxqlcrgzhd2
Tags: upstream-0.93
ImportĀ upstreamĀ versionĀ 0.93

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
int a;
 
2
printf ("input a\n");
 
3
scanf ("%d", a);
 
4
{
 
5
  int a;
 
6
  {
 
7
    double a;
 
8
    
 
9
    printf ("input a\n");
 
10
    scanf ("%lf", a);
 
11
    printf ("double a = %g\n", a);
 
12
  }
 
13
  a = 10;
 
14
  printf ("int a in block = %d\n", a);
 
15
}
 
16
printf ("int a = %d\n", a);
 
17
exit;