Hello world: 두 판 사이의 차이

K-위키
편집 요약 없음
편집 요약 없음
1번째 줄: 1번째 줄:
<nowiki> #include <stdio.h>  </nowiki>
''#''include <stdio.h>  
 
  int main( void )
{
    printf( "Hello world! \n" );
    return 0;
}


int main( void )
{
  printf( "Hello world! \n" );
  return 0;
}


----
----


C언어로 이것을 할 줄 안다면 다 배운거라 보면 된다.
C언어로 이것을 할 줄 안다면 다 배운거라 보면 된다.

2015년 6월 14일 (일) 18:13 판

#include <stdio.h> 
int main( void )
{
   printf( "Hello world! \n" );
   return 0;
}



C언어로 이것을 할 줄 안다면 다 배운거라 보면 된다.