[ create a new paste ] login | about

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

godneil - C, pasted on Aug 6:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# include <stdio.h>
int main(void)
{
    char swinger[] = "The Lord you are my shepherd";
    char *money = swinger;

    printf("I will praise the Lord %c \n", *money);
    printf("I will praise the Lord %s \n", swinger);
    printf("I will praise the Lord %s \n", money);
    
    return 0;


}


Output:
1
2
3
I will praise the Lord T 
I will praise the Lord The Lord you are my shepherd 
I will praise the Lord The Lord you are my shepherd 


Create a new paste based on this one


Comments: