Get your hands dirty

The only way to learn a new programming language is by writing programs in it. The first program to write is the same for all languages: Print the words hello, world!
In C, the program to print ``Hello, world!'' is
#include <stdio.h>
main()
{
printf("Hello, world!\n");
}
Just how to run this program depends on the system you are using.

Comments

Popular posts from this blog

Write a Program to Add two 3x3 Matrix using C

C program for Unit Conversion

Write a Program to Add two 5x5 Matrix using C