[ create a new paste ] login | about

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

godneil - C, pasted on Aug 27:
//Creating Functionns & Run from Another Function
#include<stdio.h>

int yow_function(void);
int now_function(void);

int main(void)
{
    printf("Jesus Is the IAM \n");
    
    yow_function();
    
    return 0;
}

int yow_function(void)
{
    printf("Jesus is the only way to God \n");
    
    now_function();
    
    return 0;
}

int now_function(void)
{
    printf("Have mercy on me a sinner");
    
    return 0;
}
    


Output:
1
2
3
Jesus Is the IAM 
Jesus is the only way to God 
Have mercy on me a sinner


Create a new paste based on this one


Comments: