10 lines
239 B
C
10 lines
239 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
|
|
char text[]
|
|
= "abc 123 0xFF 0b101 3.14 'a' '\\n' \"hello\" \"world\\\"\\n\" if else /* /* while */ */ "
|
|
"while break (){}[].,:; += -= *= /= %= == != <= >= + - * / % % = ! < >";
|
|
}
|