C - Declaring a Variable and Assigning a Value

Description

Declaring a Variable and Assigning a Value

Demo

#include <stdio.h> 

int main() //ww  w  .  j a va 2 s . co  m
{ 
    int start = 0; 

    printf("The starting value is %d.\n",start); 
    return(0); 
}

Result

Related Topic