GITLAB
afofana
/
LeNeutron
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
a910daa6e9ae0aab26810702b5dd1f2a305f070d
Authored by
afofana
2019-01-07 15:27:39 +0100
1 parent
bf7c8de2
Envoie de a.c
Showing
1 changed file
with
10 additions
and
0 deletions
Show diff stats
a.c
Inline
Side-by-side
a.c
0 → 100644
Wrap text
Show/Hide comments
View file @
a910daa
...
...
@@ -0,0 +1,10 @@
1
+#include <stdio.h>
2
+
3
+#define rouge "\033[;31m"
4
+#define inverse "\033[7m"
5
+
6
+int main ()
7
+{
8
+ printf ("texte %sde couleur rouge%set meme en inverse\n", rouge, inverse);
9
+ return 0;
10
+}
...
...