Hello, I need to make a program to read a text file and set it to a label... I thought I could use fgets and popen to do it but I'm lost on programming it!! Check out the code: FILE *page= (FILE *)popen("cat rox.txt","r"); GtkWidget * label = lookup_widget(GTK_WIDGET(button), "label1"); gtk_label_set_text(GTK_LABEL(label),page); I know that gtk_label_set_text is waiting a gchar, and I'm ...