Mega Code Archive
Categories
/
C
/
Code Snippets
How to define variable and use them
#include
main() { int x,j,k; // Defining variables x = 13; j = 9; k = x + j; printf("sum of two numbers is %d \n",k); }