[ create a new paste ] login | about

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

slevy1ster - C, pasted on Jun 13:
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>

char * getString(void)
{
    const * str = "textprint test";
    return str;
}  

int main()
{
    printf("%s\n", getString() );    
    return 0;
}


Output:
1
textprint test


Create a new paste based on this one


Comments: