[ create a new paste ] login | about

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

godneil - C, pasted on Aug 23:
1
2
3
4
5
6
7
8
9
# include <stdio.h>
int main(void)
{
    char strig_program[] = "abc123";
    
    printf("Me tell you %s", strig_program);

return 0;
}


Output:
1
Me tell you abc123


Create a new paste based on this one


Comments: