Mega Code Archive

 
Categories / C Tutorial / Data Type
 

Displaying Integer Data Types with printf

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