Skip to content
Snippets Groups Projects
printf.c 89 B
Newer Older
  • Learn to ignore specific revisions
  • chrg's avatar
    chrg committed
    void printf(const char* fmt,...);
    
    int main(void) {
    
      printf("Hello, %s %s", "World");
    
    chrg's avatar
    chrg committed
    }