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

@sipark

reverse_array(int)

C
1 year ago
#include <stdio.h> #include <unistd.h> void ft_rev_int_tab(int *tab, int size){ int i = 0, j = 0; int s1[size+1]; while(i < size){ s1[i] = tab[i]; i++;

atoi

C
1 year ago
#include <stdio.h> int ft_atoi(char *str) { int i = 0; int sign = 1; int value = 0; while (str[i] != '\0') { if (str[i] == '\t' || str[i] == '\n' || str[i] == '\v' || str[i] == '\f' || str[i] == '\r' || str[i] == ' ') {

putnbr

C
1 year ago
#include <unistd.h> void ft_putchar(char c) { write(1, &c, 1); } void ft_putnbr(int nb) { if (nb == -2147483648) // 가장 작은 int 값을 처리

skyscraper

C
1 year ago
#include <stdio.h> #include <stdlib.h> // 전역 변수 선언 int g_n; // n x n 격자 크기 int **g_grid; // n x n 격자 int *g_up, *g_down, *g_left, *g_right; // 시야값 // 동적 메모리 할당 함수 void memory_util(void)
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