[ create a new paste ] login | about

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

godneil - C, pasted on Aug 19:
1
2
3
4
5
6
7
8
9
10
11
# include <stdio.h>
int main(void)
{
    char book[] = "I can with God's help";
    char *pointer = book;
   
    printf("I know that %c \n", *pointer);
    printf("I know that %s", pointer);

    return 0;
}


Output:
1
2
I know that I 
I know that I can with God's help


Create a new paste based on this one


Comments: