15 lines
207 B
C
15 lines
207 B
C
#include <stdio.h>
|
|
/* Le commentaire en dehores du programme */
|
|
|
|
void the_fonction_needed(void){
|
|
//BEGIN
|
|
//END
|
|
return;
|
|
}
|
|
|
|
int main(void){
|
|
/* LA FONCTION PRINCIPALE */
|
|
the_fonction_needed();
|
|
return 0;
|
|
}
|