#include <stdio.h>
int main()
{
printf("μ μ : %d \n", 100);
printf("μ€μ : %f \n", 10.123); //%.2fλ‘ μλ¦Ώμ μ ν μ μλ€.
printf("λ¬Έμ : %c \n", 'A'); // 'A'μ λ¨μΌλ¬Έμμ΄ "A"μ λ¬Έμμ΄
printf("λ¬Έμμ΄ : %s \n", "Hello, C!");
return 0;
}