This commit is contained in:
Debucquoy
2023-09-20 15:18:20 +02:00
parent 00d0cdfaf3
commit 4fd7542f03
228 changed files with 351 additions and 12 deletions

18
bac2/os/chap0/ex1.c Normal file
View File

@ -0,0 +1,18 @@
#include <stdio.h>
#include <stdlib.h>
unsigned int string_length(char string[]);
int main(int argc, char *argv[])
{
printf("%d", string_length("test"));
return 0;
}
unsigned int string_length(char string[]){
int i = 0;
while(string[i] != '\0'){
i++;
}
return i;
}