[ create a new paste ] login | about

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

godneil - C, pasted on Aug 5:
1
2
3
4
5
6
7
8
9
10
# include <stdio.h>
int main (void)
{
    char *my_pointer;
    my_pointer = "Jesus Is Lord";
    printf("From beginning to the end %s", my_pointer);

    return 0;

} 


Output:
1
From beginning to the end Jesus Is Lord


Create a new paste based on this one


Comments: