C

Function to put characters to standard out. Requires stdio.h

int puts(const char *str);

Example usage:

#include <stdio.h>
 
int main(int argc, char *argv[]){
  puts("hello");
  return 0;
}
 

x86 Assembly

Takes the value of edi and then outputs it to standard out