Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Browse Source
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 3
and
Version 4
of
Makefile
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
Apr 27, 2016, 3:48:58 PM (
9 years
ago)
Author:
Mattia Monga
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
Makefile
v3
v4
22
22
ret
23
23
}}}
24
25
* `somma.c` (usa la funzione di cui sopra)
26
27
{{{#!c
28
#include <stdio.h>
29
30
int somma(int, int);
31
32
33
int main(){
34
int x = somma(42, 24);
35
printf("La somma e': %d\n", x);
36
return 0;
37
}
38
39
}}}