Data Type C Tutorial

#include 
main(){
    int operand1;
    operand1 = 29;
    printf("The value of operand1 is %d", operand1);
}
The value of operand1 is 29