online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
//C program to find largest among two numbers using ternary operator #include<stdio.h> void main() { // Variable declaration int a,b,larg; printf("Enter two number\n"); scanf("%d %d",&a,&b); // Largest among a and b larg = a>b?a:b; //Display largest number printf("Largest Number is : %d",larg); }

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