/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
// 2-1 μ£Όμ μ¬μ©νκΈ°
/*
2-2 μ£Όμμ λ
Έλ ₯μ νμ ! κ°μ°μ μμΈ
*/
#include <stdio.h>
int main()
{
printf("μ μ: %d\n",100);
printf("μ€μ: %f\n",100.1);
printf("λ¬Έμ: %c\n",'c');
printf("λ¬Έμμ΄: %s\n","hello c!");
return 0;
}