#include "stdlib.h"
#include "stdio.h"
int main()
{
char a[8] = { 49,32,33,61,62,63,34,35 };
char *s=(char*)malloc(9);
char *str = s;
memset(s, 0, 9);
for (int i = 0; i < 8; i++)
{
*s = a[i];
s++;
}
printf("%d
", i);
system("pause");
return 0;
}