[ create a new paste ] login | about

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

godneil - C, pasted on Sep 13:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

int my_function(void);
int main (void)
{
    my_function();
    
    return 0;
}

int my_function(void)
{
    printf("This is my function");
    
    return 0;
}


Output:
1
This is my function


Create a new paste based on this one


Comments: