You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cbmc/specgen/test_sample.c

12 lines
168 B

#include <stdio.h>
int multiply(int a, int b) {
return a * b;
}
int main() {
int result = multiply(6, 7);
printf("Result: %d\n", result);
return 0;
}