#include int main(){ long unsigned x; printf("Enter a number: "); scanf("%lu", &x); /* Add assembly to quadrulpe x * You'll need extended asm for this (%% in front of register names) * Make sure to list x as both input and output */ asm( ); printf("Four times your number is: %lu\n", x); return 0; }