It should work automatically after you install the compiler. Open Visual Studio, click Help > About. Click Copy Info and then paste the contents into a reply here.
Steve this is the info abt the compiler
Microsoft Visual Studio 2005
Version 8.0.50727.42 (RTM.050727-4200)
Microsoft .NET Framework
Version 2.0.50727
Installed Edition: Professional
Microsoft Visual Basic 2005 77626-235-0521391-41820
Microsoft Visual Basic 2005
Microsoft Visual C# 2005 77626-235-0521391-41820
Microsoft Visual C# 2005
Microsoft Visual C++ 2005 77626-235-0521391-41820
Microsoft Visual C++ 2005
Microsoft Visual J# 2005 77626-235-0521391-41820
Microsoft Visual J# 2005
Microsoft Visual Web Developer 2005 77626-235-0521391-41820
Microsoft Visual Web Developer 2005
Crystal Reports AAC60-G0CSA4B-V7000AY
Crystal Reports for Visual Studio 2005
Intel(R) Fortran Compiler Integration
Intel(R) Fortran Compiler Integration for Microsoft Visual Studio 2005, Version 9.1.3427.2005, Copyright (C) 2002-2006 Intel Corporation
Fortran program:
program main
write(*,*)'Inside Fortran Function'
call c_fun
write(*,*)'Back to Fortran Function'
end
C program:
#include
<stdio.h>
void
c_fun()
{
printf(
"Inside C \n");
}
Error Message is :
error LNK2019: unresolved external symbol _c_fun referenced in function _MAIN__
Eagerly waiting for the solution and thanks in advance
Kameswara Sarma