[ create a new paste ] login | about

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

C, pasted on Oct 31:
1
2
3
4
5
6
7
8
#include <stdio.h>

main()
{
const char *str = "shirley";
printf("Function %s Lien %d str %s\n", __func__, __LINE__, str);

}


Output:
1
2
3
Function main Lien 7 str shirley

Exited: ExitFailure 33


Create a new paste based on this one


Comments: