Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Working with Variables | Data Types and Variables
C Basics

bookWorking with Variables

Before you can use a variable in C, you need to declare it. Declaring a variable means telling the compiler what kind of data the variable will hold (its type) and giving it a name (its identifier). The general syntax for declaring a variable is:

<data_type> <variable_name>;
main.c

main.c

copy
1234567891011
#include <stdio.h> int main() { // Store distance using an integer int distance = 12; // Store direction using a character char direction = 'R'; return 0; }
Note
Note

When initializing a char type variable, make sure to use single quotes.

With the data stored in these variables, you can use them in different ways. One option is to display them on the screen, or you can process them further in calculations.

question mark

Now, can you select the correct way to initialize a character-type variable?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 2

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Awesome!

Completion rate improved to 2.63

bookWorking with Variables

Swipe to show menu

Before you can use a variable in C, you need to declare it. Declaring a variable means telling the compiler what kind of data the variable will hold (its type) and giving it a name (its identifier). The general syntax for declaring a variable is:

<data_type> <variable_name>;
main.c

main.c

copy
1234567891011
#include <stdio.h> int main() { // Store distance using an integer int distance = 12; // Store direction using a character char direction = 'R'; return 0; }
Note
Note

When initializing a char type variable, make sure to use single quotes.

With the data stored in these variables, you can use them in different ways. One option is to display them on the screen, or you can process them further in calculations.

question mark

Now, can you select the correct way to initialize a character-type variable?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 2
some-alt