Files
2026-06-10 23:24:38 +05:30

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;
}