online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
#include <stdio.h> int main() { short sh = 12; //short 정수형 변수 int nt = 155; //int 정수형 long long on = 1666; // long long 정수형 long ln = 2000; //long 정수형 printf("자료형의 크기를 알아보는 코드 \n"); printf("1. short : %dbyte, %dbyte \n", sizeof(sh), sizeof sh); printf("2. int : %dbyte, %dbyte \n", sizeof(nt), sizeof nt); printf("3. long long : %dbyte, %dbyte \n", sizeof(on), sizeof on); printf("4. long : %dbyte, %dbyte \n", sizeof(ln), sizeof ln); 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