Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Apprendre Creating Your First Struct | Introduction to Structs
C Structs

bookCreating Your First Struct

Using the visual cue at the end of first chapter , let's create a data type to describe a chemical element:

struct chemicalElement
{
	char name[3];
	int atomicNum;
	int valency;
	double mass;
};

Note

The mass and sequence number cannot be negative, so it would be more efficient to use the unsigned short int data type.

Now, we can “create” a chemical element:

The code will look like this:

#include "stdio.h"

struct chemicalElement
{
	char name[3];
	int atomicNumber;
	int valency;
	double mass;
};

int main()
{
	struct chemicalElement silicon = {"Si", 14, 4, 28.08};
	return 0;
}

Access to struct fields will be discussed in the next chapter.

Try to describe the geometric point A with a structure.

Tâche

Swipe to start coding

  1. Create a structure named Point;
  2. Create a field for the name of the future point;
  3. Create fields for the X and Y coordinates.

Solution

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 1. Chapitre 4
single

single

Demandez à l'IA

expand

Demandez à l'IA

ChatGPT

Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion

Suggested prompts:

Résumer ce chapitre

Expliquer le code dans file

Expliquer pourquoi file ne résout pas la tâche

close

Awesome!

Completion rate improved to 4.17

bookCreating Your First Struct

Glissez pour afficher le menu

Using the visual cue at the end of first chapter , let's create a data type to describe a chemical element:

struct chemicalElement
{
	char name[3];
	int atomicNum;
	int valency;
	double mass;
};

Note

The mass and sequence number cannot be negative, so it would be more efficient to use the unsigned short int data type.

Now, we can “create” a chemical element:

The code will look like this:

#include "stdio.h"

struct chemicalElement
{
	char name[3];
	int atomicNumber;
	int valency;
	double mass;
};

int main()
{
	struct chemicalElement silicon = {"Si", 14, 4, 28.08};
	return 0;
}

Access to struct fields will be discussed in the next chapter.

Try to describe the geometric point A with a structure.

Tâche

Swipe to start coding

  1. Create a structure named Point;
  2. Create a field for the name of the future point;
  3. Create fields for the X and Y coordinates.

Solution

Switch to desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

close

Awesome!

Completion rate improved to 4.17
Section 1. Chapitre 4
single

single

some-alt