<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>

HOLA..<br>estoy utilizando Visual C++ 6.0 y la IMSL(R) es C Numerical Library Version 6.0<br>Lo que estoy haciendo es correr un ejemplo de la librería IMSL, el ejemplo es:<br><br><br>****************<br>***************<br>// prueb3isml.cpp : Defines the entry point for the application.<br>//<br>#include "stdafx.h"<br>#include <stdio.h><br>#include <imsl.h><br>#include <math.h><br><br>Main()<br>{<br><br>int n = 3;<br>float *x;<br>float a[] = {1.0, 3.0, 3.0,<br>             1.0, 3.0, 4.0,<br>             1.0, 4.0, 3.0};<br>float b[] = {1.0, 4.0, -1.0};<br><br><br>/* Solve Ax = b for x */<br><br>x = imsl_f_lin_sol_gen (n, a, b, 0);<br><br>/* Print x */<br><br>imsl_f_write_matrix ("Solution, x, of Ax = b", 1, 3, x, 0);<br><br>}<br><br><br>*****************<br>*****************<br>y como resultado me da lo siguiente:<br><br>Deleting intermediate files and output files for project 'prueb3isml - Win32 Release'.<br>--------------------Configuration: prueb3isml - Win32 Release--------------------<br>Compiling...<br>StdAfx.cpp<br>Compiling...<br>prueb3isml.cpp<br>C:\Archivos de programa\Microsoft Visual Studio\MyProjects\prueb3isml\prueb3isml.cpp(27) : warning C4508: 'Main' : function should return a value; 'void' return type assumed<br>Linking...<br>prueb3isml.obj : error LNK2001: unresolved external symbol _imsl_f_write_matrix<br>prueb3isml.obj : error LNK2001: unresolved external symbol _imsl_f_lin_sol_gen<br>LIBC.lib(wincrt0.obj) : error LNK2001: unresolved external symbol _WinMain@16<br>Release/prueb3isml.exe : fatal error LNK1120: 3 unresolved externals<br>Error executing link.exe.<br><br>prueb3isml.exe - 4 error(s), 1 warning(s)<br><br><br>Cómo podría solucionar estos errores...???<br><br><br /><hr />Discover the new Windows Vista <a href='http://search.msn.com/results.aspx?q=windows+vista&mkt=en-US&form=QBRE' target='_new'>Learn more!</a></body>
</html>