File: ex07.out

package info (click to toggle)
funnelweb 3.2-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,768 kB
  • sloc: ansic: 9,156; makefile: 22
file content (24 lines) | stat: -rw-r--r-- 160 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


x=1;
while (x<=10)
  {
   printf("X=%u\n",x);
  }


x:=1;
while (x<=10)
  {
   printf("X=%u\n",x);
  }


x=1;
while (x<=10)
  {
   printf("X=%u\n",x);
  }