mult test

This commit is contained in:
inixyz
2023-10-22 14:56:03 +03:00
parent e859d18826
commit 4fd0c68f10
3 changed files with 41 additions and 0 deletions

9
tests/mult.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdint.h>
int main(){
unsigned int x, y;
x = 20;
x = 5;
x *= y;
}