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

9 lines
99 B
Plaintext

#include "sylib.h"
//test mul
int main(){
int a, b;
a = 10;
b = 5;
return a * b;
}