Mega Code Archive

 
Categories / C / Data Type
 

How to define variable and use them

#include <stdio.h> main() {          int i,j,k; // Defining variables          i = 6;     j = 8;     k = i + j;          printf("sum of two numbers is %d \n",k); }