fork download
  1. #include <unistd.h>
  2.  
  3. void ft_putchar (char c);
  4.  
  5. void ft_print_alphabet(void)
  6. {
  7. char c;
  8.  
  9. c = 'a';
  10. while (c <= 'z')
  11. {
  12. ft_putchar(c);
  13. c++;
  14. }
  15. }
  16.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/Scrt1.o: In function `_start':
(.text+0x20): undefined reference to `main'
/home/CywKcU/ccL0gthy.o: In function `ft_print_alphabet':
prog.c:(.text+0x16): undefined reference to `ft_putchar'
collect2: error: ld returned 1 exit status
stdout
Standard output is empty