Posts by Jujuneos • 33 points
2 posts
-
1
votes0
answers50
viewsQ: How to execute ROL instruction in Assembly inline?
Guys, I have a problem to execute the instruction to scroll left in Assembly in a C code. All the sites I research show this way, but the compiler says there are many memory references to "ROL". I…
-
2
votes1
answer318
viewsQ: How to print tree with indentation proportional to the depth of the node in C?
I need to adjust this code so that the tree is printed with margin indentation proportional to the node depth, and that it prints a character ' - ' to represent each NULL. Anyone can help? If I have…