#include <stdio.h>
#define CH1 ';'
#define CH2 't'
#define CH3 ','
#define TEXTO "Alguns exemplos de macro."
#define NUMERO 1027
void main(void) {
putchar(CH1); printf("\n");
putchar(CH2); printf("\n");
putchar(CH3); printf("\n");
putchar(TEXTO); printf("\n");
puts(TEXTO); printf("\n");
printf("%d\n\n", NUMERO);
}
Comentários
Postar um comentário
Your Theme Here.