University stuff.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

oppgaver.h 202B

123456
  1. int stringsum(char* str);
  2. int distance_between(char* str, char ch);
  3. char* string_between(char* str, char ch);
  4. char** split(char* str);
  5. void printsplit(char** arr);
  6. void stringsum2(char* str, int* res);