set label code example
Example 1: label for attribute
<label for="username">Click me</label>
<input type="text" id="username">
Example 2: gtk label set label
gtk_label_set_label(label, string); // The second argument has to be a string. Try g_snprintf to save anything in a string.