#include <stdio.h>
   
  int add (int x, int y) {
      int z;          
      z = x + y;
      return (z);     
  }
  main ()
  {
      int i, j, k;
      i = 10;
      j = 20;
      k = add(i, j);       
      printf ("The value of k is %d\n", k);  
  }
  how do you change the above code to the following 
   
  + (2, 6)
  - ( 2, 6)



thanks
robert ryan


       
---------------------------------
Got a little couch potato? 
Check out fun summer activities for kids.

[Non-text portions of this message have been removed]

Reply via email to