gnu tag

1 questions


1 answers
107 views
0
Simple assembly question.

#include <stdio.h>int main() { int a = 20; int b = 10; int r = a / b; (#) printf(%d\n, r); return 0;}If you disable the # part here, it is shown below.int r = a / b; 0x8000660 mov -0xc(%rbp),%ea...

2 years ago

© 2024 OneMinuteCode. All rights reserved.