~ubuntu-branches/debian/sid/frama-c/sid

« back to all changes in this revision

Viewing changes to tests/jessie/oct_vs_pol.c

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy
  • Date: 2009-06-03 08:19:25 UTC
  • Revision ID: james.westby@ubuntu.com-20090603081925-kihvxvt0wy3zc4ar
Tags: upstream-20081201.dfsg
ImportĀ upstreamĀ versionĀ 20081201.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
int main (void)
 
3
{
 
4
  int i = 0, j, k = 0;
 
5
  while ((0 <= j) && (j <= 9))
 
6
  {
 
7
    i = i * 10 + j;
 
8
    k++;
 
9
  }
 
10
  return 0;
 
11
}
 
12
 
 
13
 
 
14
/* 
 
15
Local Variables:
 
16
compile-command: "LC_ALL=C make oct_vs_pol"
 
17
End:
 
18
*/