#include <stdlib.h>
#include <stdio.h>
#include <string.h> 

struct myStructure {
   int value1;
   float value2;
   char text[10];
};

int main(int argc, char* argv[]) {
   struct myStructure s1;
   
   s1.value1 = 3;
   s1.value2 = 0.77;
   strcpy(s1.text, "abc");
   
   printf("%i, %f, %s\n", s1.value1, s1.value2, s1.text);
   
   return EXIT_SUCCESS;
}
