function in c

C
#include <stdio.h>
#include <stdlib.h>
void functionName()
{
	// some code here
}
int main()
{
    functionName();
}#include <stdio.h>

void function(){
  printf("I am a function!");
}

int main(void) {
  
  function();
}#include <stdio.h>

// Here is a function declaraction
// It is declared as "int", meaning it returns an integer
/*
	Here are the return types you can use:
    	char,
        double,
        float,
        int,
        void(meaning there is no return type)
*/
int MyAge() {
	return 25;
}

// MAIN FUNCTION
int main(void) {
	// CALLING THE FUNCTION WE MADE
    MyAge();
}
Source

Also in C: