#include <stdio.h>
#include <stdlib.h>
#if defined(WINDOWS)
#define CLEAR system("cls");
#elif defined(LINUX)
#define CLEAR system("clear");
#elif defined(MAC_OS)
#define CLEAR system("clear");
#else
#define CLEAR printf("Plataforma imcompativel\n");
#endif
int main(int argc, char **argv){
CLEAR;
printf("Pressione ENTER para continuar...");
getchar();
return 0;
}
|