Skip to content

Instantly share code, notes, and snippets.

@clarkzjw
Created November 3, 2014 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clarkzjw/8478c1e478ca6719af06 to your computer and use it in GitHub Desktop.
Save clarkzjw/8478c1e478ca6719af06 to your computer and use it in GitHub Desktop.
change the background color in cmd
#include <stdio.h>
#include <stdlib.h>
int main()
{
long time;
printf("I Love You");
for(; ;)
{
system("color a");
for(time=0;time<99999999;time++);
system("color b");
for(time=0;time<99999999;time++);
system("color c");
for(time=0;time<99999999;time++);
system("color d");
for(time=0;time<99999999;time++);
system("color e");
for(time=0;time<99999999;time++);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment