Answers for "function in"

C
5

function

function factorial(n) {
  if (n == 0) {
    return 1;
  } else {
    return factorial(n - 1) * n;
  }
}
Posted by: Guest on July-11-2021
5

how to write function in c

#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();
}
Posted by: Guest on April-11-2020
2

function

function list_formation(){
$args = array(,

    'post_type' => 'categories',
    'posts_per_page' => 20,
);

$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
    
    $formations = get_posts(array(
        'post_type' => 'formations',
        'post__in' => array(16061),
        'meta_query' => array(
            array(
                'key' => 'categories', // name of custom field
                'value' => '"' . get_the_ID() . '"', 
                'compare' => 'LIKE'
            )
        )
    ));
   
    if($formations){

        foreach ($formations as $categorie){
           // $list = get_field('formations', $formation->ID);
           // list of categorie  with ID  formation
            echo   the_title()  . '</br>';

        }

    }
endwhile;

wp_reset_postdata();
Posted by: Guest on May-14-2021
7

function

funcion name_of_funtion(){

}
Posted by: Guest on May-04-2021

Code answers related to "function in"

Code answers related to "C"

Browse Popular Code Answers by Language