C Multiple Variables
In this page:
Declaring Multiple Variables of the Same Type
Multiple variables of the same type can be declared in a single statement by separating their names with commas after one type keyword, avoiding the repetition of writing the type multiple times.
Example: Declaring Multiple Variables of the Same Type
#include <stdio.h>
int main() {
int a, b, c;
a = 1; b = 2; c = 3;
printf("%d %d %d", a, b, c);
return 0;
}
Login to try C/C++/Java/PHP code in the editor
Declaring and Initializing Together
Each variable in a comma-separated declaration can also be given its own initial value, combining declaration and initialization for several variables of the same type in one line.
Example: Declaring and Initializing Together
#include <stdio.h>
int main() {
int a = 1, b = 2, c = 3;
printf("%d %d %d", a, b, c);
return 0;
}
Login to try C/C++/Java/PHP code in the editor
Multiple Variables of Different Types
A single declaration statement can only introduce variables of one specific type, so variables of different types, like an int and a float, must always be declared in separate statements.
Example: Multiple Variables of Different Types
#include <stdio.h>
int main() {
int age = 25;
float height = 5.9f;
printf("%d %.1f", age, height);
return 0;
}
Login to try C/C++/Java/PHP code in the editor
Multiple Assignment in One Statement
C allows chained assignment, such as x = y = z = 10, which evaluates right to left, assigning the same value to multiple variables in a single expression statement.
Example: Multiple Assignment in One Statement
#include <stdio.h>
int main() {
int x, y, z;
x = y = z = 10;
printf("%d %d %d", x, y, z);
return 0;
}
Login to try C/C++/Java/PHP code in the editor
Readability Considerations
While declaring many variables on one line saves space, grouping only closely related variables together and keeping unrelated ones on separate lines generally keeps code easier to read and maintain.
Example: Readability Considerations
#include <stdio.h>
int main() {
int width = 10, height = 20;
float price = 9.99f;
printf("%d %d %.2f", width, height, price);
return 0;
}
Login to try C/C++/Java/PHP code in the editor
Chapter Quiz — Complete all 21 topics to unlock
0/21 topics done
Complete these topics first:
- C Introduction
- C History & Features
- C Environment Setup
- C First Program
- C Syntax & Structure
- C Statements
- C Comments
- C Keywords & Identifiers
- C Data Types
- C Character Data Type
- C Numeric Data Types
- C Decimal (Floating-Point) Numbers
- C sizeof Operator
- C Extended Data Types
- C Type Conversion
- C Booleans
- C Variables
- C Changing Variable Values
- C Multiple Variables
- C Constants
- C Fixed-Width Integers