myCompiler myCompiler
Deutsch English Español Français Italiano 日本語 한국어 Nederlands Polski Português
Recent
Login Sign up
Recent
Login Sign up
S

@sampaoli

ft_range

C
6 hours ago
#include <stdio.h> #include <stdlib.h> int *ft_range(int start, int end) { int *tab; int size; int i; int step;

ft_itoa.c

C
1 month ago
#include <stdlib.h> static int count_chiffres(long n) { int len; len = 0; if (n <= 0) len = 1; while (n != 0)

fizzbuzz

C
3 months ago
void ft_putchar(char c) { write(1, &c, 1); } void ft_putstr(char *s) { int i; i = 0;

ft_convert_base2.c (part 2)

C
3 months ago
#include <stdlib.h> int check_base(char *base); // proto de la function checkbase int ft_strlen(char *str) // permet d avoir la longueur de la chaine { int i; i = 0; while (str[i])

ft_convert_base (part 1)

C
3 months ago
#include <stdlib.h>
Previous Next page

Supported languages

Deno JavaScript NodeJS Python Ruby Go C C++ Java C# TypeScript PHP Bash R Octave (MATLAB) Fortran Lua Erlang SQL MySQL MongoDB Clojure D Perl Kotlin Swift Rust Assembly
© 2026 mycompiler.io
Terms of service Privacy policy Contact us