Created
January 27, 2020 13:02
-
-
Save souravrax/328b1fe1a3b5f9f180d0b083a29f9c54 to your computer and use it in GitHub Desktop.
Revisions
-
souravrax created this gist
Jan 27, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #include <stdio.h> int main(void) { // Red text and blue background puts("\x1b[31m\x1b[44mHello, World"); // Reset colors to defaults printf("\x1b[0m"); }