You are on page 1of 1

------------------------------------------------------------------------------------------------------------------------------Problem: Make a function that display text Hello World on the screen.

------------------------------------------------------------------------------------------------------------------------------#include <conio.h>
#include <stdio.h>
void helloWorld();

// Function Prototype

void main()
{
clrscr();
helloWorld();

// Function Call

getch();
}
void helloWorld()
{
printf("Hello World");

// Function Body/Definition

URL: http://mylcphs.com/ics.html
E-Mail: farhan.saleem@hotmail.com
Instructor: Muhammad Rana Farhan

You might also like