No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

progC 141B

123456789101112131415
  1. int g(int o){
  2. int j = o * 2;
  3. return j;
  4. }
  5. int f(int p){
  6. int y = p + 2;
  7. return y - 5 + g(1);
  8. }
  9. int main(){
  10. int a = 7;
  11. int c = f(a);
  12. }