4 January 2020, 11:07 pm by antelove19

C programming language
Happy Coding
main.c
/* ------------------------------------------------------------ */
/* Variable */
/* Using Constant */
/* */
/* Author: antelove */
/* Website: antelove.com */
/* ------------------------------------------------------------ */
#include <stdio.h> // standar input output library
#define INT 10 // define constant
int main() {
printf("This is using constant: %d \n", INT);
getchar(); // hold the screen
return 0;
}