Está en la página 1de 1

/*

* Written by E. Montano
* Copyright 2014
*/
/*************************************
* This is a very important comment *
* so please read this. *
**************************************/
// Program 1.4 A Simple C Program - Important
#include <stdio.h>
#define INCHES_PER_FOOT 12
int main(void)
{
printf("\aBe careful!!\n");
printf("What??!\n"); //Example of
Trigraph
printf("There are %d inches in a foot.\n", INCHES_PER_FOOT); //Example of
Macros
return 0;
}

También podría gustarte