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

@Maurishiu

last param

C
2 years ago
#include <unistd.h> int main(int argc, char **argv) { int i; i = 0; if (argc > 1) { argc--;

fizz buzz

C
2 years ago
#include <unistd.h> void ft_write_number(int number) { if (number > 9) ft_write_number(number / 10); write(1, &"0123456789"[number % 10], 1); } int main (void) {

rot13

C
2 years ago
#include <unistd.h> void rot13(char *str) { int i; i = 0; while(str[i] != '\0') { if ((str[i] >= 'A' && str[i] <= 'M') || (str[i] >= 'a' && str[i] <= 'm'))

ft_rev

C
2 years ago
#include <unistd.h> int ft_strlen(char *str) { int i; i = 0; while (str[i] != '\0') { i++;

aff_last

C
2 years ago
#include <unistd.h> int main(int argc,char*argv[]) { int i; i = -1; if (argc > 1) { while (argv[argc -1][++i])

aff_first

C
2 years ago
#include <unistd.h> int main (int argc,char **argv) { int i; i = -1; if (argc > 1) { while (argv[1][++i])

Aff a

C
2 years ago
#include <unistd.h> int main (int argc, char **argv) { int i; i = 0; if (argc == 2) { while (argv[1][i] != '\0')
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