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

Swipe um das Menü anzuzeigen

book
Creating Your First Struct

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

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:

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

Try to describe the geometric point A with a structure.

Aufgabe

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.

Lösung

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 4
single

single

Fragen Sie AI

expand

Fragen Sie AI

ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

close

Awesome!

Completion rate improved to 4.17

book
Creating Your First Struct

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

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:

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

Try to describe the geometric point A with a structure.

Aufgabe

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.

Lösung

Switch to desktopWechseln Sie zum Desktop, um in der realen Welt zu übenFahren Sie dort fort, wo Sie sind, indem Sie eine der folgenden Optionen verwenden
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

close

Awesome!

Completion rate improved to 4.17

Swipe um das Menü anzuzeigen

some-alt