/******************************************************************************
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.
*******************************************************************************/
#include <stdio.h>
int main()
{
printf("정수: %d\n", 100); // 정수 100 출력
printf("실수: %f\n", 10.123); // 실수 10.123 출력
printf("문자: %c\n", 'A'); // 문자 A 출력
printf("문자열: %s\n", "Hello, C!"); // 문자열 Hello, C 출력력
return 0;
}