大厂笔试题
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.

8 lines
105 B

  1. #include <stdio.h>
  2. void func(void){
  3. printf("hhh");
  4. }
  5. int main(){
  6. func();
  7. func(2);
  8. return 0;
  9. }