sysy-data/functional_c/sy/15_mul.sy

8 lines
98 B
Plaintext
Raw Normal View History

2024-04-14 22:20:29 +08:00
#include "sylib.h"
//test mul
int main(){
int a, b;
a = 10;
b = 5;
return a * b;
}