Changes between Version 3 and Version 4 of Makefile


Ignore:
Timestamp:
Apr 27, 2016, 3:48:58 PM (8 years ago)
Author:
Mattia Monga
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Makefile

    v3 v4  
    2222  ret
    2323   }}}
     24
     25 * `somma.c` (usa la funzione di cui sopra)
     26
     27   {{{#!c
     28#include <stdio.h>
     29
     30int somma(int, int);
     31
     32
     33int main(){
     34  int x = somma(42, 24);
     35  printf("La somma e': %d\n", x);
     36  return 0;
     37}
     38
     39   }}}