Skip to content

Instantly share code, notes, and snippets.

@souravrax
Created January 27, 2020 13:02
Show Gist options
  • Save souravrax/328b1fe1a3b5f9f180d0b083a29f9c54 to your computer and use it in GitHub Desktop.
Save souravrax/328b1fe1a3b5f9f180d0b083a29f9c54 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
// Red text and blue background
puts("\x1b[31m\x1b[44mHello, World"); // Reset colors to defaults
printf("\x1b[0m");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment