[ create a new paste ] login | about

Link: http://codepad.org/OmGC95cx    [ raw code | output | fork ]

C, pasted on Jan 24:
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
int main ()
{
int x;
printf ("Hello World\n");
return (0);

for (x = 0; x < 5;  ++x)
printf ("%i\n",x);
 }


Output:
1
Hello World


Create a new paste based on this one


Comments: