Files
c_soft/riscv/main.c

10 lines
64 B
C
Raw Normal View History

2025-04-17 00:04:59 +08:00
int main()
{
int a=1;
int b=2;
int c=a+b;
return c;
}