Skip to content
Snippets Groups Projects
Commit 79c80e01 authored by an7s's avatar an7s
Browse files

...

Former-commit-id: 618b4d01a9cf4269a72056b304f56880f3798461
parent 1caee8dc
No related branches found
No related tags found
No related merge requests found
......@@ -3,9 +3,7 @@ int main(int argc, char **argv)
{
unsigned a = (unsigned) atoi(argv[1]);
unsigned b = (unsigned) atoi(argv[2]);
unsigned d = a * b;
unsigned d = a * b; // IMUL
printf("%u\n", d);
// printf("%u * %u = %u\n", a, b, d);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment