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