[ create a new paste ] login | about

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

godneil - C, pasted on Aug 27:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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: