Variables in c programming || Basic programs || C programming

Here we are going to see how to use of Variables or Syntax for declaration and definition of variables in  C Programming Language.

 

#include<stdio.h>

void main()
{
    //Variable Declaration
    int a;

    //Variable Definition
    a = 10;

    printf("The value of Variable of type Integer is: %d",a);
}

//......Coded by ISHAANA KARMAKAR
#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post