myCompiler
English
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
K
@kevshouse
Err_hello_array.c
C
1 year ago
#include <unistd.h> int main() { int size; size = 12; int my_array[size]; my_array[0] = 65; my_array[1] = 66; my_array[2] = 10; // ASCII line feed.
ft_putchar.c
C
1 year ago
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* gg.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: keanders <marvin@42.fr> +#+ +:+ +#+ */ /*
rush0.c
C
1 year ago
#include "ft_putchar.c" int pad_val(int n) //Use this func to calc Num of padding chars //for either the rows or columns. { if (n < 3) { return n; }
ft_is_negative.c
C
1 year ago
#include <unistd.h> void ft_is_negative(int n) { int num = 0; if (n < 0) { num = 78; } else { num = 80;
ft_printnumbers.c
C
1 year ago
#include <unistd.h> void ft_printnumbers(void) { int i; i = 48; while (i < 58) { write(1, &i, 1);
Previous
Next page