A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task. Use this tag for questions which specifically involve creating or calling functions. For help implementing a function to perform a task, use [algorithm] or a task-specific tag instead.
Je suis graphégassé par le code, où les valeurs de get, telles que £ _ get ['nom d'utilisateur'] , ne sont pas incluses comme paramètres aux foncti ...
Ma fonction de validation ressemble à celle xxx pre> Exemple d'appel de fonction p> xxx pré> Comme vous le voyez, ma fonction de validation contient 3 v ...
#include <stdio.h>
#include <stdlib.h>
struct Point {
double x;
};
void test(struct Point **a, int len)
{
int i;
printf("a = %p\n", a);
for (i = 0; i < len; ++i) ...