C plus plus Code Generator
Text generator - C++ code generation examples
Example input
-
#include <iostream> using namespace std; int main() { cout <<
Example real generated results
-
star
"Printing the first 3 numbers..." << endl; cout << "1: 2, 3, 4" << endl; cout << "2: 4, 3, 1" << endl; cout << "3, 4, 1, 2" << endl; } #include <iostream> #include <string> #include <vector> #include <algorithm> #include <functional> #include <queue> #include <stack> #include <map> #include <set> #include <bitset> #include <numeric> #include
-
star
"ABC 123,456.789" << endl; cout << "ABC 123.456,789" << endl; cout << "ABC 123.456,789.000" << endl; cout << "ABC 123.456,789.000" << endl; cout << "ABC 123.456,789.000" << endl; cout << "ABC 123.456,789.000" << endl; cout << "ABC 123.456,789.000" << endl; cout << "ABC 123.456
-
star
"This is a test" << endl; cout << "This is another test" << endl; cout << "This is a third test" << endl; cout << "This is a fourth test" << endl; return 0; } // This is the code that will be run when you run the program // You can add as many code lines as you want // After that, just click on Run Code. Code will be executed. // You can also save your changes by clicking on Saved. //
-
star
"This is a test" << endl; return 0; } /* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author joshua */ class C { public: C() { cout << "ctor\n"; } ~C() { cout << "dtor\n"; } void print() {
try it yourself: Text Generator Playground - C plus plus Code Generator
Sign up