Created
January 27, 2020 13:02
-
-
Save souravrax/328b1fe1a3b5f9f180d0b083a29f9c54 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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