online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#!/usr/bin/env python3 #python program to find whether a number is even or odd #use chmod +x even_odd.py to run this via shell i.e ./even_odd.py def find_even_odd( x): if x&1: #using bitwise and operation on (deciaml)number and (decimal) 1 (000001) print("Odd Number") return 1; else: print("Even Number") return 0; def main(): n=int(input("Enter the number-----\n")) print("\nThe number is ",end=""); find_even_odd(n) return None; if __name__=="__main__": main() #this module return 0 if the number is even and return 1 if the number is odd

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