Multi Integer Value

#include "stdio.h"
main( )
{
    int index;    index = 13;
    printf("The value of the index is %d\n",index);
    index = 27;
    printf("The valve of the index = %d\n",index);
    index = 10;
    printf("The value of the index = %d\n",index);
    system("pause");
    return 0;
}

0 comments:

Post a Comment