Home / Programs / Variable Declaration And Initialization in Java
🚀 Programming Example

Variable Declaration And Initialization in Java

👁 6,120 Views
💻 Practical Program
📘 Step Learning
Variable Declaration And Initialization. This program will show you how to declare variable in java

💻 Program Code

public class VariableDeclarationAndInitialization{

   public static void main(String []args) {
     int a, b, c;                // Declares three int variable a, b, and c
     a = 10; b = 10;            // Example of initialization of variable a and b
     byte B = 22;               // initializes a byte type variable B
     double pi = 3.14159; // declares and assigns a value of PI
     char k = 'a';             // the char variable k iis initialized with value 'a'

   }
}

  
                        

🖥 Program Output

No
                            

📘 Explanation

int a, b, c; // Declares three int variable a, b, and c

a = 10; b = 10; // Example of initialization of variable a and b

double pi = 3.14159; // declares and assigns a value of PI

📚 Learning Subject

Master Programming Through Practical Examples

Improve your coding logic, problem-solving skills and programming confidence by practicing real-world examples with explanations.

🎯 How to learn from this example

First understand the algorithm carefully. Then study the program line-by-line and compare it with the output. Finally, review the explanation section to strengthen your logic and programming understanding.

🔥 Practice suggestion

Rewrite the program without looking at the code. Modify values, conditions or logic and run it again. This helps improve confidence and strengthens coding skills much faster.