Quote (ikusus @ 7 Jun 2012 18:40)
Of course! For example:
Codechar text[] = "Hello world!";
int main() {
__asm__("mov $text, %edi");
__asm__("call puts");
}
thanks but I've been heard wrong...
Is there a way to convert numbers to Letters? Like number 65 = A
So, Let's say I want my console to drop me something like
A
B
C
D
E
... I could write something like
int Number = 65
printf ("%(whatevergoeshere)", Number)
And it would appear in the console as A
This post was edited by SoRandom on Jun 7 2012 05:22pm