C Code Generator
Text generator - C code generation examples
Example input
-
#include <stdio.h> int main() { printf(
Example real generated results
-
star
"I'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\nI'm a line\n
-
star
"Hello world!\n"); return 0; } The program will print Hello world! to the standard output. Note that the program will not be able to use printf() to write to a file, because printf() uses standard output. You need to use printf() to write to a file using functions like write() or fwrite(). For more information on how to write to a file, see How to Write to a File. You can also try running the program without the return 0 line at
-
star
"Hello, world!\n"); return 0; } // This is the same program, but compiled with gcc -O // gcc -O main.c // gcc -O main.c &&./a.out // gcc -O main.c && echo $? == 0 // gcc -O main.c && echo $? == 1 // gcc -O main.c && echo $? == 2 // gcc -O main.c && echo $?
-
star
"hello world!\n"); return 0; } #include <bits/stdc++.h> using namespace std; int main() { long long int a = 2, b = 3, c = 4, d = 5, e = 6, f = 7; cout << a << " " << b << " " << c << " " << d << " " << e << " " << f << endl; return 0; } #include <bits/stdc++.
try it yourself: Text Generator Playground - C Code Generator
Sign up