online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> #include <conio.h> int main() { typedef struct { int sno; char name[20]; } student; student s1; printf("Enter the details of students\n"); printf("Enter sno and name\n"); scanf("%d%s", &s1.sno, s1.name); printf("The details of students are\n"); printf("Sno-%d Name-%s\n", s1.sno, s1.name); return 0; }

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