TalkCode
Why write the code when you can speak it?
A way to speak your code and let the computer give you the syntax. TalkCode is Python program which uses Speech Recognition to identify certain syntax and convert it into C++ code at a very beginner level.
What can you do with?
Use commands like:
- start : to begin your code
- initialize: to initialize a variable string/integer
- integer: to specify the integer data type
- string: to specify the string data type
- print: to print a string
- next : (important) to go to the next line and get the next command
Example:
start
i want to initialize a integer with 250
next
i also want to initialize a string with hello world
next
print hello
Output would be :
include <iostream>
using namespace std;
int main()
{
int var1 = 250;
string var2 = " hello world";
cout <<"hello";
}

Log in or sign up for Devpost to join the conversation.