[ create a new paste ] login | about

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

godneil - C, pasted on Aug 27:
//Creating Functionns & Function with no return value
#include<stdio.h>

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

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

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

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


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: