i have a homework for our programmin classes, i searched for other solutions regarding the gotoxy function, but all saw was for devc++, turboc++ and other IDEs, when i use the function for devc++ or turboc++, i know it wont work, but i tried it, says there's not library for gotoxy..


can somebody please help me?
:'(

there's this error,.
fatal error LNK1120: 1 unresolved externals

i dont know if i have the right codes, coz this is the first time i've encountered the gotoxy function..


here's my code...

#include "stdafx.h"
#include <stdlib.h>
#include <conio.h>
#include <iostream>
using namespace std;

int gotoxy(int , int);

int _tmain(int argc, _TCHAR* argv[])
{
	int i, j;
	int x = 10, y = 10;

	for ( i = 0; i <5; i++ )
	{
		cout << endl;
		for ( j = 5; j > i; j-- )
		{
			cout << j;
			gotoxy(10,10);
		}
	}

	cout << "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
system("PAUSE");
	return 0;
}

Recommended Answers

All 2 Replies

read your other thread.

read your other thread.

which is here

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.