Monday, 9 May 2016

Simple hello program in c language

#include <stdio.h>
 
main()
{
    printf("hello");
    return 0;
}
 
 
Output:
hello 
 

No comments:

Post a Comment