Prints a message on the screen - C Language Basics

C examples for Language Basics:Hello World

Description

Prints a message on the screen

Demo Code

#include <stdio.h>
int main()//w  w  w.j av  a  2  s . c om
{
    printf("this is a test");
    printf(" programmers!\n");
    return 0;
}

Related Tutorials