#include <stdio.h>
#include <stdlib.h>

void
hello( a, b )
int a ;
int b ;
{
        a = 5;
        b = 6;
        printf( "a is %d \n b is %d\n", a, b );
}

int
main()
{
        hello();
        exit( 0 );
}

  

相关文章:

  • 2022-01-02
  • 2022-12-23
  • 2022-01-24
  • 2022-02-28
  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-18
  • 2021-09-29
  • 2021-10-23
  • 2022-12-23
相关资源
相似解决方案