9 lines
82 B
C++
9 lines
82 B
C++
#include <stdio.h>
|
|
|
|
int ret123();
|
|
|
|
int main()
|
|
{
|
|
printf("ret=%d\n", ret123());
|
|
}
|
|
|