#include <windows.h>
#include <stdio.h>
#include <conio.h>
int main(){
HANDLE hConsole;
hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTitle( "What ever you want !" );
SetConsoleTextAttribute(hConsole, 4);
printf("CMD");
getch();
}
you can change "4" - to any number (some times letters too ) that support by the cmd color codes.
Google and find :))