fork download
  1. #include <stdio.h>
  2. int somma (int a, int b){
  3. return a + b;
  4. }
  5. int main(void) {
  6. int res = somma (10 , 5);
  7. printf("somma= %d \n", res);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
somma= 15