demonstrate the use of variables : Variable « Language Basics « C / ANSI-C






demonstrate the use of variables

int main()
{
    int variable;
    int variable_2;
    int variable_3;

    variable = 3 * 5;
    variable_2 = 2 * variable;
    variable_3 = 3 * variable;
    return (0);
}


           
       








Related examples in the same category

1.For and scanf
2.the variable limitsthe variable limits
3.Finding the size of a typeFinding the size of a type