C Tutorial/Data Type/int Declaration
Версия от 14:21, 25 мая 2010; (обсуждение)
Define variables of the type integer
#include <stdio.h>
main(){
int i,j,k;
i = 6;
j = 8;
k = i + j;
printf("sum of two numbers is %d \n",k);
}
sum of two numbers is 14