Showing posts with label Introduction to C. Show all posts
Showing posts with label Introduction to C. Show all posts

Thursday, December 3, 2015

Welcome Program in C

#include <stdio.h>
int main()
{
    printf( "Welcome to C.\n" );
    return 0;
}

Popular Posts