Thread Line encoding (13 answers)
Opened by Graf Herschel at 2015-02-16 15:15

GwenDragon
 2015-02-16 18:22
#179694 #179694
User since
2005-01-17
14831 Artikel
Admin1
[Homepage]
user image
Es ist wohl sowas gemeint:

T:\>cat x.c
#include <stdio.h>

char *buffer = "\x31\x30";

int main()
{
printf("%s",buffer);
return 0;
}
T:\>gcc x.c
T:\>a.exe
10
T:\>

View full thread Line encoding