Variable Declaration In C
Variables in C How to declare the variable inside the C program? Video : https://goo.gl/lSzCth Example:- #include<stdio.h> int main() { int a; //variable declaration int b=2; // variable initialization //how to print these variables printf("variable a = %d",a); printf("variable b = %d",b); return 0; } What is variable declaration? Ans: Only declaring the variable without initializing it in a program is called as variable declaration. OR Only declaring the variable withou...