[cc lang="cpp"]
// this is a syntax highlighting test
#include
#define BLAH “blah”
const float pi = 3.14; /* yum */
typedef struct Foo {
char * bar;
} Foo;
void nothing() {
int useless; // test
}
/* this is a comment
* yay */
int main() {
char * message = “hello world\n”;
printf(message);
nothing();
for( int i = 0; i < 5; i++) {
fprintf(stderr, “%i\n”, i);
break;
}
return null;
}
[/cc]
Aug
19
2008
Aug
09
2008
// this is a syntax highlighting test
#include <stdio.h>
#define BLAH "blah"
const float pi = 3.14; /* yum */
typedef struct Foo {
char * bar;
} Foo;
void nothing() {
int useless; // test
}
/* this is a comment
* yay */
int main() {
char * message = "hello world\n";
printf(message);
nothing();
for( int i = 0; i < 5; i ) {
fprintf(stderr, "%i\n", i);
break;
}
return null;
}
Aug
09
2008
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | // this is a syntax highlighting test #include <stdio.h> #define BLAH "blah" const float pi = 3.14; /* yum */ typedef struct Foo { char * bar; } Foo; void nothing() { int useless; // test } /* this is a comment * yay */ int main() { char * message = "hello world\n"; printf(message); nothing(); for( int i = 0; i < 5; i++) { fprintf(stderr, "%i\n", i); break; } return null; } |
Aug
09
2008
[cpp]
// this is a syntax highlighting test
#include &lt;stdio.h&gt;
#define BLAH &quot;blah&quot;
const float pi = 3.14; /* yum */
typedef struct Foo {
char * bar;
} Foo;
void nothing() {
int useless; // test
}
/* this is a comment
* yay */
int main() {
char * message = &quot;hello world\n&quot;;
printf(message);
nothing();
for( int i = 0; i &lt; 5; i++) {
fprintf(stderr, &quot;%i\n&quot;, i);
break;
}
return null;
}
[/cpp]
Aug
09
2008
// this is a syntax highlighting test
#include <stdio.h>;
#define BLAH "blah"
const float pi = 3.14; /* yum */
typedef struct Foo {
char * bar;
} Foo;
void nothing() {
int useless; // test
}
/* this is a comment
* yay */
int main() {
char * message = "hello world\n";
printf(message);
nothing();
for( int i = 0; i < 5; i ) {
fprintf(stderr, "%i\n", i);
break;
}
return null;
}