Skip to content
Snippets Groups Projects
functions.c 82 B
Newer Older
  • Learn to ignore specific revisions
  • chrg's avatar
    chrg committed
    int f(int a) { 
    }
    
    static int g(int a) { 
    }
    
    int main() { 
        return f(g(42));
    }