[code:1]// Syntax implementation
// Just for fun ;)
// By Park J. K. <segfault at byus dot net>
struct mystruct_s // 구조체 이름은 xxxx_s 이런 식으로
{
int a, b;
}
typedef struct mystruct_s mydatatype_t // 역시 자료형은 xxxx_t 이런 식으로
void myfunction(void)
{ // 함수선언할때 브래킷은 한칸 넘기고
int a, b, c;
int x;
a = 5;
b = 3;
c = a+b*5-(pow(a, b));
x = 0;
while(x != 5) { // 함수 내에서는 브래킷은 뒤에다 붙이고
printf("Hello world\n");