RiruKira's blog

By RiruKira, history, 5 years ago, In English

Hello everyone, I'm a responsible in the innovation club in our school, and I was assigned to create a programming contest for bachelors (in French) but it's not possible for me to create mashup in the right moment because of my rating.

Is there anyone who can help me host the contest on his account? I still have 5 days before showing the contest to the school administration.

Full text and comments »

  • Vote: I like it
  • +5
  • Vote: I do not like it

By RiruKira, history, 5 years ago, In English

Hi everyone, I'm trying to fill up a table of 10 students as example, how can I do it?

I know just how to make the typedef structure, can any one lend me a help? Thanks !

#define MAX 20

typedef struct date
{
       int day,month,year;
} T_date;

typedef struct student
{
       char first_name[MAX], last_name[MAX];
        float mark;
        T_date birth_day;
} T_student;

Full text and comments »

  • Vote: I like it
  • -11
  • Vote: I do not like it

By RiruKira, history, 5 years ago, In English

Hello Everyone.

Our C language teacher gave us a work to do presentation about Structures in C I already began working on it, but I'm still having problems :

I'm still learning the C language and I'm not good at Structures in C.

I don't have good exercices for the class presentation .

Can anyone help me on the comments section, or feel free to message me.

THANKS FOR THE HELP !

Full text and comments »

  • Vote: I like it
  • -19
  • Vote: I do not like it