[ create a new paste ] login | about

Link: http://codepad.org/8eTVfiXO    [ raw code | fork ]

C, pasted on May 24:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
main()
{
int x, y, z;
while ((x+y+z)!=0)
{
  x=3; y=6; z=-9;
  printf ("%d\n", x+y+z);
}
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: