30 lines
552 B
C
30 lines
552 B
C
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: hello.c
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 14/05/26 03:03:56 PM IST
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: YOUR NAME (),
|
|
* Organization:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
main ( ) {
|
|
|
|
printf ( "hello, " );
|
|
printf ( "world" );
|
|
printf ( "\n" );
|
|
|
|
return 0;
|
|
}
|