I Have A project need to load bitmaps in borland c++ 4.5 wijndows 8 x86

my code is
//3.1 Average of Three Numbers

#include<iostream.h>
#include<conio.h>
void main()

{
	int m1,m2,m3;
	float avg;
	char ans;

	cout<<"Enter 3 Numbers";
	cin>>m1>>m2>>m3;
	avg=(m1+m2+m3)/3;

	cout<<"Average="<<avg;
	cout<<"\n Rerun the program ? (input y or n)";
	while(ans)
	{
	cin>>ans;
	if(ans=='y'||(ans=='Y'))
	{
	 cout<<"\n Try Again";
	 cout<<"\n Rerun the program ? (input y or n)";
	}
	else
	{
	cout<<" \n Bye Bye";
	cout<<"\n Try Again";
	cout<<"\n Rerun the program ? (input y or n)";
	}
	}
}


I want to put a jpeg or gif file
in the part where it says
bye bye


Thanks for Any help i get
Topic archived. No new replies allowed.