I want to read 'c' and "Hello world!!" but i see just the hexadecimal part.
Here the structure :
typedef struct step
{  
int n;
 char l;
 char c[25];                                                      
 } toto;
    int fd = open("one-structure.yolo", O_CREAT | O_WRONLY, 777);
    toto some;
    some.n = 212347;
    some.l = 'c';
    some.c[25]  = "Hello world!!";
    write(fd, &some.n, sizeof(int));
    write(fd, some.l, sizeof(char));
    write(fd, some.c, 13);
    close(fd);
the result : {=U@�f
 
     
     
    