Working 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
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
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.
すべて明確でしたか?
フィードバックありがとうございます!
セクション 1. 章 2
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください
セクション 1. 章 2