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 104B

12345678910
  1. int fonction(int p){
  2. int y = p*3;
  3. return y;
  4. }
  5. int main(){
  6. int a;
  7. int c = fonction(3);
  8. stop(3);
  9. }