[ create a new paste ] login | about

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

godneil - C, pasted on Aug 25:
1
2
3
4
5
6
7
8
9
10
11
12
13
# include <stdio.h>
int main (void)
{
    int height = 5;

    while (height < 10)
    {
        printf("Jesus is Lord \n");
        height = height + 1;
    }

return 0;
}


Output:
1
2
3
4
5
Jesus is Lord 
Jesus is Lord 
Jesus is Lord 
Jesus is Lord 
Jesus is Lord 


Create a new paste based on this one


Comments: