Questions et réponses pour le function :

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.

7
votes
J'essaie de créer une liste de lecture multimédia capable de faire avancer les crédits, de lire la vidéo et de modifier le titre sur le thumb-Hover, la fin de la vid&ea ...

7
votes
int (*ptr)(char (*ch)[]); What does the above declaration means? Does it meanptr is pointer to a function that accepts an argument which is array of pointers to characters returning integer?How t ...

7
votes
def FileCheck(fn): try: fn=open("TestFile.txt","U") except IOError: print "Error: File does not appear to exist." return 0 I'm trying to make ...

7
votes
Je voudrais exécuter une commande (comme LS) à Vala, comme la fonction Python OS.System, ou mieux, la fonction popen. Aucune idée? ...