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