online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
fn main() { //let number_base:u32; let mut number_base:u32; //let raise_to_power_max:u32; let mut raise_to_power_max:u32; let mut raise_to_power:u32; let mut result_of_operation:u32; /* Set variable values */ number_base = 10; raise_to_power = 1; raise_to_power_max = 6; // while loop that runs for n iterations while raise_to_power <= raise_to_power_max { // raise n to power result_of_operation = u32::pow ( number_base , raise_to_power ); // print result of operation println!( "{} * {} = {}" , number_base , raise_to_power , result_of_operation ); // increment iterator raise_to_power = raise_to_power + 1; } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue