Skip to content
Snippets Groups Projects
div.c 61 B
Newer Older
  • Learn to ignore specific revisions
  • #include "div.h"
    
    int div(int a, int b)
    {
        return a / b;
    }